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.Benchmark.csproj 1.3 kB

5 years ago
12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <Platforms>AnyCPU;x64</Platforms>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. <DefineConstants>DEBUG;TRACE</DefineConstants>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <None Remove="tensorflow.dll" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
  25. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.3.0" />
  26. <PackageReference Include="TensorFlow.NET" Version="0.20.0" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  30. </ItemGroup>
  31. </Project>