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.2 kB

2 years ago
2 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.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. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  21. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <None Remove="Lite\testdata\add.bin" />
  25. <None Remove="Lite\testdata\add_quantized.bin" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Content Include="Lite\testdata\add.bin">
  29. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  30. </Content>
  31. <Content Include="Lite\testdata\add_quantized.bin">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </Content>
  34. </ItemGroup>
  35. <ItemGroup>
  36. <PackageReference Include="FluentAssertions" Version="5.10.3" />
  37. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
  38. <PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
  39. <PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
  40. <PackageReference Include="coverlet.collector" Version="3.2.0">
  41. <PrivateAssets>all</PrivateAssets>
  42. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  43. </PackageReference>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  47. <ProjectReference Include="..\..\tools\Tensorflow.UnitTest.RedistHolder\Tensorflow.UnitTest.RedistHolder.csproj" />
  48. </ItemGroup>
  49. </Project>