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.

TensorFlowNET.Graph.UnitTest.csproj 1.8 kB

2 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <LangVersion>9.0</LangVersion>
  5. <IsPackable>false</IsPackable>
  6. <AssemblyName>TensorFlowNET.UnitTest</AssemblyName>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <DefineConstants>DEBUG;TRACE</DefineConstants>
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  14. <DefineConstants>DEBUG;TRACE</DefineConstants>
  15. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. <DefineConstants />
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
  23. <PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
  24. <PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
  25. <PackageReference Include="coverlet.collector" Version="3.2.0">
  26. <PrivateAssets>all</PrivateAssets>
  27. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  28. </PackageReference>
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  32. <ProjectReference Include="..\..\tools\Tensorflow.UnitTest.RedistHolder\Tensorflow.UnitTest.RedistHolder.csproj" />
  33. <ProjectReference Include="..\Tensorflow.UnitTest\Tensorflow.UnitTest.csproj" />
  34. <ProjectReference Include="..\TensorFlowNET.Keras.UnitTest\Tensorflow.Keras.UnitTest.csproj" />
  35. </ItemGroup>
  36. </Project>