Summary
Converts the reports in the specified directory into human readable form.
- Namespace
- Cake
.Common .Tools .ReportUnit - Containing Type
- ReportUnitAliases
Syntax
[CakeMethodAlias]
public static void ReportUnit(this ICakeContext context, DirectoryPath inputFolder, ReportUnitSettings settings)
Examples
Provide an input folder and custom ToolPath, which will causes ReportUnit to search entire directory for report files.
Cake task:
ReportUnit("c:/temp", new ReportUnitSettings(){
ToolPath = "c:/tools/reportunit.exe"
});
Attributes
| Type | Description |
|---|---|
| Cake |
An attribute used to mark script method aliases. |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context. |
| inputFolder | DirectoryPath | The input folder. |
| settings | ReportUnitSettings | The ReportUnit settings. |
Return Value
| Type | Description |
|---|---|
| void |
