You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Tensorflow.Console.csproj 977 B

5 years ago
4 years ago
123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.0</TargetFramework>
  5. <RootNamespace>Tensorflow</RootNamespace>
  6. <AssemblyName>Tensorflow</AssemblyName>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. <LangVersion>9.0</LangVersion>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  11. <DefineConstants>TRACE;DEBUG</DefineConstants>
  12. <PlatformTarget>x64</PlatformTarget>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  15. <DefineConstants>DEBUG;TRACE</DefineConstants>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.5.0" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\TensorFlowNET.Recommenders\Tensorflow.Recommenders.csproj" />
  22. <ProjectReference Include="..\TensorFlowNET.Text\Tensorflow.Text.csproj" />
  23. </ItemGroup>
  24. </Project>