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.AzureDevOps.
Summary
Gets an object for writing issues to Azure DevOps pull request using the specified settings.
- Assembly
- Cake
.Issues .PullRequests .AzureDevOps .dll - Namespace
- Cake
.Issues .PullRequests .AzureDevOps - Containing Type
- Azure
Dev Ops Pull Request System Aliases
Syntax
public static IPullRequestSystem AzureDevOpsPullRequests(this ICakeContext context, AzureDevOpsPullRequestSystemSettings settings)
Examples
Report code analysis issues reported as MsBuild warnings to an Azure DevOps Server pull request:
var pullRequestSettings =
new AzureDevOpsPullRequestSettings(
new Uri("http://myserver:8080/tfs/defaultcollection/myproject/_git/myrepository"),
"refs/heads/feature/myfeature",
AzureDevOpsAuthenticationNtlm());
ReportCodeAnalysisIssuesToPullRequest(
MsBuildCodeAnalysis(
@"c:\build\msbuild.log",
MsBuildXmlFileLoggerFormat),
AzureDevOpsPullRequests(pullRequestSettings),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | Azure |
Settings for accessing the pull request system. |
Return Value
Type | Description |
---|---|
IPullRequestSystem | Object for writing issues to Azure DevOps pull request. |