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.PullRequests.AppVeyor.
Summary
Gets an object for writing issues to AppVeyor builds using the specified settings.
- Assembly
- Cake
.Issues .PullRequests .AppVeyor .dll - Namespace
- Cake
.Issues .PullRequests .AppVeyor - Containing Type
- App
Veyor Builds Aliases
Syntax
public static IPullRequestSystem AppVeyorBuilds(this ICakeContext context, AppVeyorBuildSettings settings)
Examples
Report code analysis issues reported as MsBuild warnings to an AppVeyor build:
var appVeyorSettings =
new AppVeyorBuildSettings
{
MessagePattern = "Project: {ProjectName}, File: {FilePath}, Line: {Line}"
};
ReportCodeAnalysisIssuesToPullRequest(
MsBuildCodeAnalysis(
@"c:\build\msbuild.log",
MsBuildXmlFileLoggerFormat),
AppVeyorBuilds(appVeyorSettings),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | App |
Settings for accessing AppVeyor. |
Return Value
Type | Description |
---|---|
IPullRequestSystem | Object for writing issues to AppVeyor builds. |