UnitTests.csproj 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <UseDataCollector />
  6. <AssemblyVersion>1.6.2.0</AssemblyVersion>
  7. <FileVersion>1.6.2.0</FileVersion>
  8. <InformationalVersion>1.6.2+Branch.main.Sha.b6eeb6321685af474ffc17b1390ff1d4894a90c5</InformationalVersion>
  9. <Version>1.6.2</Version>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <DefineConstants>TRACE</DefineConstants>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  15. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
  19. <PackageReference Include="ReportGenerator" Version="5.1.9" />
  20. <PackageReference Include="System.Collections" Version="4.3.0" />
  21. <PackageReference Include="xunit" Version="2.4.1" />
  22. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
  23. <PrivateAssets>all</PrivateAssets>
  24. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  25. </PackageReference>
  26. <PackageReference Include="coverlet.collector" Version="3.1.2">
  27. <PrivateAssets>all</PrivateAssets>
  28. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  29. </PackageReference>
  30. </ItemGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  33. <ProjectReference Include="..\UICatalog\UICatalog.csproj" />
  34. </ItemGroup>
  35. <PropertyGroup Label="FineCodeCoverage">
  36. <Enabled>
  37. True
  38. </Enabled>
  39. <Exclude>
  40. [UICatalog]*
  41. </Exclude>
  42. <Include></Include>
  43. <ExcludeByFile>
  44. <!--**/Migrations/*
  45. **/Hacks/*.cs-->
  46. </ExcludeByFile>
  47. <ExcludeByAttribute>
  48. <!--MyCustomExcludeFromCodeCoverage-->
  49. </ExcludeByAttribute>
  50. <IncludeTestAssembly>
  51. False
  52. </IncludeTestAssembly>
  53. </PropertyGroup>
  54. </Project>