This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Issues.Reporting.Console.
Summary
Gets an instance of the console report format using specified settings.
- Assembly
- Cake
.Issues .Reporting .Console .dll - Namespace
- Cake
.Issues .Reporting .Console - Containing Type
- Console
Issue Report Format Aliases
Syntax
public static IIssueReportFormat ConsoleIssueReportFormat(this ICakeContext context, ConsoleIssueReportFormatSettings settings)
Examples
Report issues to console grouped by rule:
var settings =
new ConsoleIssueReportFormatSettings
{
GroupByRule = true
};
CreateIssueReport(
issues,
ConsoleIssueReportFormat(settings),
@"c:\repo",
string.Empty);
Attributes
| Type | Description |
|---|---|
| Cake |
|
| Cake |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context. |
| settings | Console |
Settings for generating the report. |
Return Value
| Type | Description |
|---|---|
| IIssueReportFormat | Instance of a console report format. |
