Summary
Converts the coverage report specified by the glob pattern into human readable form using the specified settings.
- Namespace
- Cake
.Common .Tools .ReportGenerator - Containing Type
- Report
Generator Aliases
Syntax
[CakeMethodAlias]
public static void ReportGenerator(this ICakeContext context, GlobPattern pattern, DirectoryPath targetDir, ReportGeneratorSettings settings)
Examples
ReportGenerator("c:/temp/coverage/*.xml", "c:/temp/output", new ReportGeneratorSettings(){
ToolPath = "c:/tools/reportgenerator.exe"
});
Attributes
Type | Description |
---|---|
Cake |
An attribute used to mark script method aliases. |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
pattern | GlobPattern | The glob pattern. |
targetDir | DirectoryPath | The output directory. |
settings | Report |
The settings. |
Return Value
Type | Description |
---|---|
void |