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.Binding.UnitTest.csproj 2.4 kB

5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <SignAssembly>false</SignAssembly>
  6. <DelaySign>false</DelaySign>
  7. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  8. <LangVersion>10.0</LangVersion>
  9. <Platforms>AnyCPU;x64</Platforms>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DefineConstants>DEBUG;TRACE</DefineConstants>
  13. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  14. <PlatformTarget>x64</PlatformTarget>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  17. <DefineConstants>DEBUG;TRACE</DefineConstants>
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. <PlatformTarget>x64</PlatformTarget>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  22. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  23. <PlatformTarget>x64</PlatformTarget>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  26. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <Compile Remove="KerasTests.cs" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <None Remove="ManagedAPI\nn_test.py" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <PackageReference Include="FluentAssertions" Version="5.10.3" />
  36. <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.149" />
  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. </ItemGroup>
  41. <ItemGroup>
  42. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  43. <ProjectReference Include="..\..\src\TensorFlowNET.Text\Tensorflow.Text.csproj" />
  44. <ProjectReference Include="..\..\tools\Tensorflow.UnitTest.RedistHolder\Tensorflow.UnitTest.RedistHolder.csproj" />
  45. <ProjectReference Include="..\Tensorflow.UnitTest\Tensorflow.UnitTest.csproj" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <None Update="model\saved_model.pb">
  49. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  50. </None>
  51. <None Update="Utilities\models\example1\saved_model.pb">
  52. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  53. </None>
  54. </ItemGroup>
  55. </Project>