mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 4.8.12 to 4.8.13. - [Release notes](https://github.com/danielpalme/ReportGenerator/releases) - [Commits](https://github.com/danielpalme/ReportGenerator/compare/v4.8.12...v4.8.13) --- updated-dependencies: - dependency-name: ReportGenerator dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
59 lines
1.8 KiB
XML
59 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<UseDataCollector />
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
|
<PackageReference Include="ReportGenerator" Version="4.8.13" />
|
|
<PackageReference Include="System.Collections" Version="4.3.0" />
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
|
|
<ProjectReference Include="..\UICatalog\UICatalog.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Label="FineCodeCoverage">
|
|
<Enabled>
|
|
True
|
|
</Enabled>
|
|
<Exclude>
|
|
[UICatalog]*
|
|
</Exclude>
|
|
<Include>
|
|
</Include>
|
|
<ExcludeByFile>
|
|
<!--**/Migrations/*
|
|
**/Hacks/*.cs-->
|
|
</ExcludeByFile>
|
|
<ExcludeByAttribute>
|
|
<!--MyCustomExcludeFromCodeCoverage-->
|
|
</ExcludeByAttribute>
|
|
<IncludeTestAssembly>
|
|
False
|
|
</IncludeTestAssembly>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|