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

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.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.0.0" />
  23. <PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
  24. <PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
  25. <PackageReference Include="coverlet.collector" Version="3.1.0">
  26. <PrivateAssets>all</PrivateAssets>
  27. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  28. </PackageReference>
  29. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.6.0" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  33. </ItemGroup>
  34. </Project>