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

5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>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. <PackageReference Include="FluentAssertions" Version="5.10.3" />
  33. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
  34. <PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
  35. <PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
  36. <PackageReference Include="NumSharp.Lite" Version="0.1.7" />
  37. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.3.0" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <None Update="model\saved_model.pb">
  44. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  45. </None>
  46. <None Update="Utilities\models\example1\saved_model.pb">
  47. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  48. </None>
  49. </ItemGroup>
  50. </Project>