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.Native.UnitTest.csproj 2.1 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <Platforms>AnyCPU;x64</Platforms>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. <DefineConstants>DEBUG;TRACE</DefineConstants>
  10. <PlatformTarget>x64</PlatformTarget>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  13. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  14. <DefineConstants>DEBUG;TRACE</DefineConstants>
  15. <PlatformTarget>x64</PlatformTarget>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <None Remove="Lite\testdata\add.bin" />
  22. <None Remove="Lite\testdata\add_quantized.bin" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Content Include="Lite\testdata\add.bin">
  26. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  27. </Content>
  28. <Content Include="Lite\testdata\add_quantized.bin">
  29. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  30. </Content>
  31. </ItemGroup>
  32. <ItemGroup>
  33. <PackageReference Include="FluentAssertions" Version="5.10.3" />
  34. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
  35. <PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
  36. <PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
  37. <PackageReference Include="coverlet.collector" Version="3.1.0">
  38. <PrivateAssets>all</PrivateAssets>
  39. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  40. </PackageReference>
  41. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.6.0" />
  42. <PackageReference Include="SciSharp.TensorFlow.Redist-Lite" Version="2.6.0" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  46. </ItemGroup>
  47. </Project>