|
12345678910111213141516171819202122232425262728293031 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <RootNamespace>Tensorflow</RootNamespace>
- <AssemblyName>Tensorflow</AssemblyName>
- <Platforms>AnyCPU;x64</Platforms>
- <LangVersion>10.0</LangVersion>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>TRACE;DEBUG</DefineConstants>
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <PlatformTarget>AnyCPU</PlatformTarget>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.11.0" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\TensorFlowNET.Recommenders\Tensorflow.Recommenders.csproj" />
- <ProjectReference Include="..\TensorFlowNET.Text\Tensorflow.Text.csproj" />
- </ItemGroup>
-
- </Project>
|