diff --git a/build.cake b/build.cake index c2d681e253..cca3e70bc2 100644 --- a/build.cake +++ b/build.cake @@ -402,8 +402,9 @@ Task("Create-Release-Notes") if(!string.IsNullOrWhiteSpace(githubToken)) { IEnumerable redirectedOutput; + var gitReleasNotesExePath = Context.Tools.Resolve("GitReleaseNotes.exe"); var releaseNotesExitCode = StartProcess( - @"tools\GitReleaseNotes\GitReleaseNotes\tools\gitreleasenotes.exe", + gitReleasNotesExePath, new ProcessSettings { Arguments = ". /o build/releasenotes.md /repoToken " + githubToken, RedirectStandardOutput = true