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.StyleCop.
Summary
Generates summary report from a stylecop execution.
Syntax
public static void StyleCopReport(this ICakeContext context, ReportSettingsDelegate settingsDelegate)
Examples
StyleCopAnalyse(settings => settings
.WithSolution(solutionFile)
.WithSettings(settingsFile)
.ToResultFile(resultFile)
);
StyleCopReport(settings => settings
.ToHtmlReport(htmlFile)
.AddResultFiles(resultFiles)
);
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
settingsDelegate |
ReportSettingsDelegate |
Report generation settings. |
Return Value