ReportGenerator aliases

Built-In

Contains functionality related to ReportGenerator.

In order to use the commands for this alias, include the following in your build.cake file to download and install from nuget.org, or specify the ToolPath within the ReportGeneratorSettings class:

#tool "nuget:?package=ReportGenerator"

General

ReportGenerator(FilePath, DirectoryPath, ReportGeneratorSettings) Converts the specified coverage report into human readable form using the specified settings.
ReportGenerator(FilePath, DirectoryPath) Converts the specified coverage report into human readable form.
ReportGenerator(GlobPattern, DirectoryPath, ReportGeneratorSettings) Converts the coverage report specified by the glob pattern into human readable form using the specified settings.
ReportGenerator(GlobPattern, DirectoryPath) Converts the coverage report specified by the glob pattern into human readable form.
ReportGenerator(IEnumerable<FilePath>, DirectoryPath, ReportGeneratorSettings) Converts the specified coverage reports into human readable form using the specified settings.
ReportGenerator(IEnumerable<FilePath>, DirectoryPath) Converts the specified coverage reports into human readable form.