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 5.2.1 to 5.2.2. - [Release notes](https://github.com/danielpalme/ReportGenerator/releases) - [Commits](https://github.com/danielpalme/ReportGenerator/compare/v5.2.1...v5.2.2) --- updated-dependencies: - dependency-name: ReportGenerator dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
64 lines
2.4 KiB
XML
64 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<!-- https://stackoverflow.com/questions/294216/why-does-c-sharp-forbid-generic-attribute-types -->
|
|
<!-- for AutoInitShutdown attribute -->
|
|
<LangVersion>Preview</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
<UseDataCollector />
|
|
<!-- Version numbers are automatically updated by gitversion when a release is released -->
|
|
<!-- Do not modify these. -->
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
<Version>1.0.0</Version>
|
|
</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="17.9.0" />
|
|
<PackageReference Include="ReportGenerator" Version="5.2.2" />
|
|
<PackageReference Include="System.Collections" Version="4.3.0" />
|
|
<PackageReference Include="xunit" Version="2.7.0" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.1">
|
|
<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>
|
|
<ItemGroup>
|
|
<None Update="xunit.runner.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="FineCodeCoverage">
|
|
<Enabled>
|
|
True
|
|
</Enabled>
|
|
<Exclude>
|
|
[UICatalog]*
|
|
</Exclude>
|
|
<Include></Include>
|
|
<ExcludeByFile>
|
|
<!--**/Migrations/*
|
|
**/Hacks/*.cs-->
|
|
</ExcludeByFile>
|
|
<ExcludeByAttribute>
|
|
<!--MyCustomExcludeFromCodeCoverage-->
|
|
</ExcludeByAttribute>
|
|
<IncludeTestAssembly>
|
|
False
|
|
</IncludeTestAssembly>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>UnitTests.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
</Project> |