Summary
Gets an instance of a the generic report format using an embedded template with custom settings.
Syntax
public static IIssueReportFormat GenericIssueReportFormatFromEmbeddedTemplate(this ICakeContext context, GenericIssueReportTemplate template, Action<GenericIssueReportFormatSettings> configurator)
Examples
Create HTML report using the HtmlDxDataGrid template with custom title:
CreateIssueReport(
issues,
GenericIssueReportFormatFromEmbeddedTemplate(
GenericIssueReportTemplate.HtmlDxDataGrid,
x => x.WithOption(HtmlDxDataGridOption.Title, "My Issue Report")),
@"c:\repo",
@"c:\report.html");
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Return Value