File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
#module nuget : ? package = Cake . DotNetTool . Module & version = 0.2 .0
3
3
4
4
// Install addins.
5
- #addin "nuget:?package=Cake.Gitter&version=0.9 .0"
5
+ #addin "nuget:?package=Cake.Gitter&version=0.10 .0"
6
6
#addin "nuget:?package=Cake.Docker&version=0.9.9"
7
7
#addin "nuget:?package=Cake.Npm&version=0.16.0"
8
8
#addin "nuget:?package=Cake.Incubator&version=4.0.2"
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public class BuildParameters
77
77
IsLocalBuild = buildSystem . IsLocalBuild ,
78
78
IsRunningOnAppVeyor = buildSystem . IsRunningOnAppVeyor ,
79
79
IsRunningOnTravis = buildSystem . IsRunningOnTravisCI ,
80
- IsRunningOnAzurePipeline = buildSystem . IsRunningOnAzurePipelines ,
80
+ IsRunningOnAzurePipeline = buildSystem . IsRunningOnAzurePipelinesHosted ,
81
81
82
82
IsPullRequest = buildSystem . IsPullRequest ,
83
83
IsMainRepo = IsOnMainRepo ( context ) ,
@@ -166,7 +166,7 @@ public class BuildParameters
166
166
{
167
167
repositoryName = buildSystem . TravisCI . Environment . Repository . Slug ;
168
168
}
169
- else if ( buildSystem . IsRunningOnAzurePipelines )
169
+ else if ( buildSystem . IsRunningOnAzurePipelinesHosted )
170
170
{
171
171
repositoryName = buildSystem . TFBuild . Environment . Repository . RepoName ;
172
172
}
@@ -188,7 +188,7 @@ public class BuildParameters
188
188
{
189
189
repositoryBranch = buildSystem . TravisCI . Environment . Build . Branch ;
190
190
}
191
- else if ( buildSystem . IsRunningOnAzurePipelines )
191
+ else if ( buildSystem . IsRunningOnAzurePipelinesHosted )
192
192
{
193
193
repositoryBranch = buildSystem . TFBuild . Environment . Repository . Branch ;
194
194
}
You can’t perform that action at this time.
0 commit comments