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

5 years ago
5 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <SignAssembly>false</SignAssembly>
  6. <DelaySign>false</DelaySign>
  7. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  8. <LangVersion>8.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>AnyCPU</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. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  25. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <Compile Remove="KerasTests.cs" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <PackageReference Include="FluentAssertions" Version="5.10.3" />
  32. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
  33. <PackageReference Include="MSTest.TestAdapter" Version="2.1.1" />
  34. <PackageReference Include="MSTest.TestFramework" Version="2.1.1" />
  35. <PackageReference Include="NumSharp.Lite" Version="0.1.7" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <None Update="model\saved_model.pb">
  42. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  43. </None>
  44. <None Update="Utilities\models\example1\saved_model.pb">
  45. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  46. </None>
  47. </ItemGroup>
  48. </Project>