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

123456789101112131415161718192021222324252627282930313233343536
  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>true</AllowUnsafeBlocks>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
  19. <PackageReference Include="MSTest.TestAdapter" Version="2.2.5" />
  20. <PackageReference Include="MSTest.TestFramework" Version="2.2.5" />
  21. <PackageReference Include="coverlet.collector" Version="3.0.3">
  22. <PrivateAssets>all</PrivateAssets>
  23. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  24. </PackageReference>
  25. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.6.0-rc0" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
  29. </ItemGroup>
  30. </Project>