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.Native.UnitTest.csproj 1.4 kB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <Platforms>AnyCPU;x64</Platforms>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. <DefineConstants>DEBUG;TRACE</DefineConstants>
  10. <PlatformTarget>x64</PlatformTarget>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  13. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  14. <DefineConstants>DEBUG;TRACE</DefineConstants>
  15. <PlatformTarget>x64</PlatformTarget>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="FluentAssertions" Version="5.10.3" />
  22. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
  23. <PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
  24. <PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
  25. <PackageReference Include="coverlet.collector" Version="1.3.0" />
  26. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.3.1" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  30. </ItemGroup>
  31. </Project>