We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af73f6a + b2ae105 commit 0e77e2eCopy full SHA for 0e77e2e
build.cake
@@ -402,8 +402,9 @@ Task("Create-Release-Notes")
402
if(!string.IsNullOrWhiteSpace(githubToken))
403
{
404
IEnumerable<string> redirectedOutput;
405
+ var gitReleasNotesExePath = Context.Tools.Resolve("GitReleaseNotes.exe");
406
var releaseNotesExitCode = StartProcess(
- @"tools\GitReleaseNotes\GitReleaseNotes\tools\gitreleasenotes.exe",
407
+ gitReleasNotesExePath,
408
new ProcessSettings {
409
Arguments = ". /o build/releasenotes.md /repoToken " + githubToken,
410
RedirectStandardOutput = true
0 commit comments