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 an embedded template with custom settings.
- Assembly
- Cake
.Issues .Reporting .Generic .dll - Namespace
- Cake
.Issues .Reporting .Generic - Containing Type
- Generic
Issue Report Format Aliases
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 |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
template | Generic |
Template to use for generating the report. |
configurator | Action |
Action for defining the settings. |
Return Value
Type | Description |
---|---|
IIssueReportFormat | Instance of the generic report format. |