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.

TensorFlowBenchmark.csproj 1.0 kB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.2</TargetFramework>
  5. <NoWin32Manifest>true</NoWin32Manifest>
  6. <AssemblyName>TensorFlowBenchmark</AssemblyName>
  7. <RootNamespace>TensorFlowBenchmark</RootNamespace>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <None Remove="tensorflow.dll" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="BenchmarkDotNet" Version="0.11.5" />
  20. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="1.14.0" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\TensorFlowNET.Core\TensorFlowNET.Core.csproj" />
  24. </ItemGroup>
  25. </Project>