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.Generic.
Summary
Gets an instance of the generic report format using specified settings.
- Assembly
- Cake
.Issues .Reporting .Generic .dll - Namespace
- Cake
.Issues .Reporting .Generic - Containing Type
- Generic
Issue Report Format Aliases
Syntax
public static IIssueReportFormat GenericIssueReportFormat(this ICakeContext context, GenericIssueReportFormatSettings settings)
Examples
Create HTML report:
var settings =
GenericIssueReportFormatSettings
.FromEmbeddedTemplate(GenericIssueReportTemplate.HtmlDiagnostic);
CreateIssueReport(
issues,
GenericIssueReportFormat(settings),
@"c:\repo",
@"c:\report.html");
Attributes
| Type | Description |
|---|---|
| Cake |
|
| Cake |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context. |
| settings | Generic |
Settings for reading the MSBuild log. |
Return Value
| Type | Description |
|---|---|
| IIssueReportFormat | Instance of the generic report format. |
