File tree 2 files changed +10
-11
lines changed
2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1
1
// Install modules
2
- #module nuget : ? package = Cake . DotNetTool . Module & version = 0.1 .0
2
+ #module nuget : ? package = Cake . DotNetTool . Module & version = 0.2 .0
3
3
4
4
// Install addins.
5
5
#addin "nuget:?package=Cake.Gitter&version=0.9.0"
6
- #addin "nuget:?package=Cake.Docker&version=0.9.6 "
7
- #addin "nuget:?package=Cake.Npm&version=0.15 .0"
8
- #addin "nuget:?package=Cake.Incubator&version=3 .0.0 "
6
+ #addin "nuget:?package=Cake.Docker&version=0.9.9 "
7
+ #addin "nuget:?package=Cake.Npm&version=0.16 .0"
8
+ #addin "nuget:?package=Cake.Incubator&version=4 .0.2 "
9
9
#addin "nuget:?package=Cake.Json&version=3.0.0"
10
10
#addin "nuget:?package=Cake.Tfx&version=0.8.0"
11
11
#addin "nuget:?package=Cake.Gem&version=0.7.0"
15
15
#addin "nuget:?package=xunit.assert&version=2.4.1"
16
16
17
17
// Install tools.
18
- #tool "nuget:?package=NUnit.ConsoleRunner&version=3.9.0"
19
- #tool "nuget:?package=GitReleaseNotes&version=0.7.1"
18
+ #tool "nuget:?package=NUnit.ConsoleRunner&version=3.10.0"
20
19
#tool "nuget:?package=ILRepack&version=2.0.16"
21
- #tool "nuget:?package=Codecov&version=1.1 .0"
22
- #tool "nuget:?package=nuget.commandline&version=4.9.2 "
20
+ #tool "nuget:?package=Codecov&version=1.4 .0"
21
+ #tool "nuget:?package=nuget.commandline&version=4.9.4 "
23
22
24
23
// Install .NET Core Global tools.
25
24
#tool "dotnet:?package=GitReleaseManager.Tool&version=0.8.0"
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 . IsRunningOnVSTS ,
80
+ IsRunningOnAzurePipeline = buildSystem . IsRunningOnAzurePipelines ,
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 . IsRunningOnVSTS )
169
+ else if ( buildSystem . IsRunningOnAzurePipelines )
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 . IsRunningOnVSTS )
191
+ else if ( buildSystem . IsRunningOnAzurePipelines )
192
192
{
193
193
repositoryBranch = buildSystem . TFBuild . Environment . Repository . Branch ;
194
194
}
You can’t perform that action at this time.
0 commit comments