ReportGeneratorReportType Enum

Summary

Represents ReportGenerator's output formats.
Namespace
Cake.Common.Tools.ReportGenerator
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["IFormattable"] Type-.->Interface2["IConvertible"] Type["ReportGeneratorReportType"] class Type type-node

Syntax

public enum ReportGeneratorReportType

Fields

Name Constant Value Summary
Badges 1
Badge report.
static
Clover 18
Creates xml report in Clover format.
static
Cobertura 9
Cobertura report
static
CsvSummary 10
CSV summary report
static
Html 2
Html report.
static
HtmlChart 11
HTML Chart report
static
HtmlInline 12
Html report with inline CSS and JavaScript
static
HtmlInline_AzurePipelines 13
Same as HTMLInline but with modified CSS that matches the look and feel of Azure Pipelines.
static
HtmlInline_AzurePipelines_Dark 17
Same as HTMLInline but with modified CSS that matches the dark look and feel of Azure Pipelines.
static
HtmlSummary 3
Html summary report.
static
JsonSummary 19
Creates summary report in JSON format.
static
Latex 4
Latex report.
static
LatexSummary 5
Latex summary report.
static
lcov 20
Creates summary report in lcov format.
static
MHtml 15
Same as HTML but packaged into a single MHTML file.
static
PngChart 14
A single PNG file containing a chart with historic coverage information.
static
SonarQube 16
Creates xml report in SonarQube 'Generic Test Data' format.
static
TeamCitySummary 21
Outputs summary report as TeamCity statistics messages.
static
TextSummary 6
Text summary report.
static
Xml 7
Xml report.
static
XmlSummary 8
Xml summary report.
static

Extension Methods

Name Value Summary
Dump<ReportGeneratorReportType>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
IsIn<ReportGeneratorReportType>(ReportGeneratorReportType[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
ThrowIfNull<ReportGeneratorReportType>(string, string) T
Throws a System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ThrowIfNull<ReportGeneratorReportType>(string) T
Throws a System.ArgumentNullException if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin