Skip to content

Commit 1d8c31f

Browse files
committed
update to cake 0.33.0, update some addins
1 parent 23357ae commit 1d8c31f

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

build.cake

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Install modules
2-
#module nuget:?package=Cake.DotNetTool.Module&version=0.1.0
2+
#module nuget:?package=Cake.DotNetTool.Module&version=0.2.0
33

44
// Install addins.
55
#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"
99
#addin "nuget:?package=Cake.Json&version=3.0.0"
1010
#addin "nuget:?package=Cake.Tfx&version=0.8.0"
1111
#addin "nuget:?package=Cake.Gem&version=0.7.0"
@@ -15,11 +15,10 @@
1515
#addin "nuget:?package=xunit.assert&version=2.4.1"
1616

1717
// 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"
2019
#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"
2322

2423
// Install .NET Core Global tools.
2524
#tool "dotnet:?package=GitReleaseManager.Tool&version=0.8.0"

build/parameters.cake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public class BuildParameters
7777
IsLocalBuild = buildSystem.IsLocalBuild,
7878
IsRunningOnAppVeyor = buildSystem.IsRunningOnAppVeyor,
7979
IsRunningOnTravis = buildSystem.IsRunningOnTravisCI,
80-
IsRunningOnAzurePipeline = buildSystem.IsRunningOnVSTS,
80+
IsRunningOnAzurePipeline = buildSystem.IsRunningOnAzurePipelines,
8181

8282
IsPullRequest = buildSystem.IsPullRequest,
8383
IsMainRepo = IsOnMainRepo(context),
@@ -166,7 +166,7 @@ public class BuildParameters
166166
{
167167
repositoryName = buildSystem.TravisCI.Environment.Repository.Slug;
168168
}
169-
else if (buildSystem.IsRunningOnVSTS)
169+
else if (buildSystem.IsRunningOnAzurePipelines)
170170
{
171171
repositoryName = buildSystem.TFBuild.Environment.Repository.RepoName;
172172
}
@@ -188,7 +188,7 @@ public class BuildParameters
188188
{
189189
repositoryBranch = buildSystem.TravisCI.Environment.Build.Branch;
190190
}
191-
else if (buildSystem.IsRunningOnVSTS)
191+
else if (buildSystem.IsRunningOnAzurePipelines)
192192
{
193193
repositoryBranch = buildSystem.TFBuild.Environment.Repository.Branch;
194194
}

0 commit comments

Comments
 (0)