UnitTests.csproj 1021 B

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</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.5.0" />
  14. <PackageReference Include="System.Collections" Version="4.3.0" />
  15. <PackageReference Include="xunit" Version="2.4.0" />
  16. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
  17. <PackageReference Include="coverlet.collector" Version="1.2.0" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  21. <ProjectReference Include="..\UICatalog\UICatalog.csproj" />
  22. </ItemGroup>
  23. </Project>