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.

UnitTest.csproj 1.6 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <SignAssembly>true</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. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <Compile Remove="KerasTests.cs" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Include="FluentAssertions" Version="5.9.0" />
  22. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
  23. <PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
  24. <PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
  25. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="1.14.1" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <None Update="model\saved_model.pb">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </None>
  34. <None Update="Utilities\models\example1\saved_model.pb">
  35. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  36. </None>
  37. </ItemGroup>
  38. </Project>