UnitTests.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  7. <DefineConstants>TRACE</DefineConstants>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
  14. <PackageReference Include="System.Collections" Version="4.3.0" />
  15. <PackageReference Include="xunit" Version="2.4.1" />
  16. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
  17. <PrivateAssets>all</PrivateAssets>
  18. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  19. </PackageReference>
  20. <PackageReference Include="coverlet.collector" Version="3.0.3">
  21. <PrivateAssets>all</PrivateAssets>
  22. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  23. </PackageReference>
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  27. <ProjectReference Include="..\UICatalog\UICatalog.csproj" />
  28. </ItemGroup>
  29. </Project>