AzureDevOpsAliases.

AzureDevOpsBuildChanges(ICakeContext, AzureDevOpsBuildSettings) Method

Summary

Gets the changes associated with an Azure Pipelines build.
Assembly
Cake.AzureDevOps.dll
Namespace
Cake.AzureDevOps
Containing Type
AzureDevOpsAliases

Syntax

public static IEnumerable<AzureDevOpsChange> AzureDevOpsBuildChanges(this ICakeContext context, AzureDevOpsBuildSettings settings)

Examples

Get changes associated with an Azure Pipelines build:

 var buildSettings =
     new AzureDevOpsBuildSettings(
         new Uri("http://myserver:8080/defaultcollection"),
         "MyProject",
         42,
         AzureDevOpsAuthenticationNtlm());

 var changes =
     AzureDevOpsBuildChanges(
         buildSettings);

 Information("Changes:");
 foreach (var change in changes)
 {
     Information("  {0}: {1}", change.Id, change.Message);
 }

Attributes

Type Description
CakeMethodAliasAttribute
CakeAliasCategoryAttribute
CakeNamespaceImportAttribute

Parameters

Name Type Description
context ICakeContext The context.
settings AzureDevOpsBuildSettings Settings for getting the build.

Return Value

Type Description
IEnumerable<AzureDevOpsChange> The changes associated with the build. Returns an empty list if build could not be found and ThrowExceptionIfBuildCouldNotBeFound is set to false.