UnitTests - Backup.csproj 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <!-- https://stackoverflow.com/questions/294216/why-does-c-sharp-forbid-generic-attribute-types -->
  5. <!-- for AutoInitShutdown attribute -->
  6. <LangVersion>Preview</LangVersion>
  7. <IsPackable>false</IsPackable>
  8. <UseDataCollector />
  9. <!-- Version numbers are automatically updated by gitversion when a release is released -->
  10. <!-- In the source tree the version will always be 2.0 for all projects. -->
  11. <!-- Do not modify these. -->
  12. <AssemblyVersion>2.0</AssemblyVersion>
  13. <FileVersion>2.0</FileVersion>
  14. <Version>2.0</Version>
  15. <InformationalVersion>2.0</InformationalVersion>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <DefineConstants>TRACE</DefineConstants>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  21. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <PackageReference Include="dotnet-xunit" Version="2.3.1" />
  25. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
  26. <PackageReference Include="ReportGenerator" Version="5.1.18" />
  27. <PackageReference Include="System.Collections" Version="4.3.0" />
  28. <PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="19.2.4" />
  29. <PackageReference Include="xunit" Version="2.4.2" />
  30. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
  31. <PrivateAssets>all</PrivateAssets>
  32. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  33. </PackageReference>
  34. <PackageReference Include="coverlet.collector" Version="3.2.0">
  35. <PrivateAssets>all</PrivateAssets>
  36. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  37. </PackageReference>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  41. <ProjectReference Include="..\UICatalog\UICatalog.csproj" />
  42. </ItemGroup>
  43. <PropertyGroup Label="FineCodeCoverage">
  44. <Enabled>
  45. False
  46. </Enabled>
  47. <Exclude>
  48. [UICatalog]*
  49. </Exclude>
  50. <Include></Include>
  51. <ExcludeByFile>
  52. <!--**/Migrations/*
  53. **/Hacks/*.cs-->
  54. </ExcludeByFile>
  55. <ExcludeByAttribute>
  56. <!--MyCustomExcludeFromCodeCoverage-->
  57. </ExcludeByAttribute>
  58. <IncludeTestAssembly>
  59. False
  60. </IncludeTestAssembly>
  61. <RunSettingsFilePath>C:\Users\charlie\s\gui-cs\Terminal.Gui\UnitTests\bin\Debug\net7.0\fine-code-coverage\coverage-tool-output\UnitTests-fcc-mscodecoverage-generated.runsettings</RunSettingsFilePath>
  62. </PropertyGroup>
  63. </Project>