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 1.6 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>latest</LangVersion>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  11. <DefineConstants>DEBUG;TRACE</DefineConstants>
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. <PlatformTarget>x64</PlatformTarget>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <Compile Remove="KerasTests.cs" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <PackageReference Include="FluentAssertions" Version="5.10.2" />
  23. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
  24. <PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
  25. <PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
  26. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="1.15.1" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <None Update="model\saved_model.pb">
  33. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  34. </None>
  35. <None Update="Utilities\models\example1\saved_model.pb">
  36. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  37. </None>
  38. </ItemGroup>
  39. </Project>