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.BuildServer.
Summary
Reports issues to build server using the specified settings.
- Assembly
- Cake
.Issues .BuildServer .dll - Namespace
- Cake
.Issues .BuildServer - Containing Type
- Aliases
Syntax
public static BuildServerIssueResult ReportIssuesToBuildServer(this ICakeContext context, IEnumerable<IIssue> issues, IBuildServer buildServer, IReportIssuesToBuildServerSettings settings)
Examples
Report issues reported as MsBuild warnings to a build server and limit number of issues to ten:
var settings =
new ReportIssuesToBuildServerSettings(@"C:\repo")
{
MaxIssuesToPost = 10
};
ReportIssuesToBuildServer(
issues,
AppVeyorBuilds(),
settings));
Attributes
| Type | Description |
|---|---|
| Cake |
|
| Cake |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context. |
| issues | IEnumerable |
Issues which should be reported. |
| buildServer | IBuildServer | The build server implementation. |
| settings | I |
The settings. |
Return Value
| Type | Description |
|---|---|
| Build |
Information about the reported and written issues. |
