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

5 years ago
5 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <SignAssembly>false</SignAssembly>
  6. <DelaySign>false</DelaySign>
  7. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  8. <LangVersion>9.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. <None Remove="ManagedAPI\nn_test.py" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <PackageReference Include="FluentAssertions" Version="5.10.3" />
  36. <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.139" />
  37. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
  38. <PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
  39. <PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
  40. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.6.0" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  44. <ProjectReference Include="..\..\src\TensorFlowNET.Text\Tensorflow.Text.csproj" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <None Update="model\saved_model.pb">
  48. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  49. </None>
  50. <None Update="Utilities\models\example1\saved_model.pb">
  51. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  52. </None>
  53. </ItemGroup>
  54. </Project>