Skip to content

Commit d9a91a1

Browse files
committed
(cake) update to cake 0.34.0
1 parent 4e31dee commit d9a91a1

File tree

3 files changed

+1
-22
lines changed

3 files changed

+1
-22
lines changed

build.cake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#addin "nuget:?package=xunit.assert&version=2.4.1"
1717

1818
// Install tools.
19-
#tool "nuget:?package=vswhere&version=2.6.13-ga6d40ba5f4"
2019
#tool "nuget:?package=NUnit.ConsoleRunner&version=3.10.0"
2120
#tool "nuget:?package=ILRepack&version=2.0.17"
2221
#tool "nuget:?package=Codecov&version=1.5.0"

build.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
2-
CAKE_VERSION=0.33.0
2+
CAKE_VERSION=0.34.0
33
DOTNET_VERSION=2.2.107

build/utils/utils.cake

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,6 @@ void Build(string configuration)
6666
.SetVerbosity(Verbosity.Minimal)
6767
.WithTarget("Build")
6868
.WithProperty("POSIX", IsRunningOnUnix().ToString());
69-
70-
if (IsRunningOnWindows()) {
71-
settings.ToolPath = GetFiles(VSWhereLatest() + "/MSBuild/**/Bin/MSBuild.exe").First();
72-
}
7369
});
7470
}
7571

@@ -130,22 +126,6 @@ void PublishILRepackedGitVersionExe(bool includeLibGit2Sharp, DirectoryPath targ
130126
CopyFileToDirectory("./src/GitVersionExe/bin/" + configuration + "/" + dotnetVersion + "/GitVersion.xml", outputDir);
131127
}
132128

133-
void GetReleaseNotes(FilePath outputPath, DirectoryPath workDir, string repoToken)
134-
{
135-
var toolPath = Context.Tools.Resolve("GitReleaseNotes.exe");
136-
137-
var arguments = new ProcessArgumentBuilder()
138-
.Append(workDir.ToString())
139-
.Append("/OutputFile")
140-
.Append(outputPath.ToString())
141-
.Append("/RepoToken")
142-
.Append(repoToken);
143-
144-
StartProcess(toolPath, new ProcessSettings { Arguments = arguments, RedirectStandardOutput = true }, out var redirectedOutput);
145-
146-
Information(string.Join("\n", redirectedOutput));
147-
}
148-
149129
void UpdateTaskVersion(FilePath taskJsonPath, string taskId, GitVersion gitVersion)
150130
{
151131
var taskJson = ParseJsonFromFile(taskJsonPath);

0 commit comments

Comments
 (0)