Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 1.65 KB

Readme_ReportGenerator.md

File metadata and controls

27 lines (21 loc) · 1.65 KB

ReportGenerator

ReportGenerator converts coverage reports generated by coverlet, OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov, or lcov into human readable reports in various formats. The reports show the coverage quotas and also visualize which lines of your source code have been covered.

Available packages

Package Platforms Installation/Usage
ReportGenerator .NET Core
.NET Framework 4.7
Use this package if your project is based on .NET Framework or .NET Core and you want to use ReportGenerator via the command line or a build script.
dotnet-reportgenerator-globaltool .NET Core Use this package if your project is based on .NET Core and you want to use ReportGenerator as a (global) 'DotnetTool'.
ReportGenerator.Core .NET Standard 2.0 Use this package if you want to write a custom plugin for ReportGenerator or if you want to call/execute ReportGenerator within your code base.

Usage

.NET Core

dotnet $(UserProfile)\.nuget\packages\reportgenerator\5.2.5\tools\net8.0\ReportGenerator.dll [options]
$(UserProfile)\.nuget\packages\reportgenerator\5.2.5\tools\net8.0\ReportGenerator.exe [options]

.NET Framework

$(UserProfile)\.nuget\packages\reportgenerator\5.2.5\tools\net47\ReportGenerator.exe [options]

Additional information