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

5 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. </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.3" />
  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="NumSharp.Lite" Version="0.1.7" />
  27. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.1.0" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <None Update="model\saved_model.pb">
  34. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  35. </None>
  36. <None Update="Utilities\models\example1\saved_model.pb">
  37. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  38. </None>
  39. </ItemGroup>
  40. </Project>