You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build.cake
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,8 @@ var isRepository = StringComparer.OrdinalIgnoreCase.Equals("reactiveui/reactiveu
63
63
64
64
var vsWhereSettings=newVSWhereLatestSettings(){IncludePrerelease=includePrerelease};
65
65
var vsLocation=string.IsNullOrWhiteSpace(vsLocationString)?VSWhereLatest(vsWhereSettings):newDirectoryPath(vsLocationString);
66
-
var msBuildPath=string.IsNullOrWhiteSpace(msBuildPathString)?vsLocation.CombineWithFilePath("./MSBuild/15.0/Bin/MSBuild.exe"):newFilePath(msBuildPathString);
66
+
var msBuildDirectory=includePrerelease?"./MSBuild/Current/Bin/MSBuild.exe":"./MSBuild/15.0/Bin/MSBuild.exe";
67
+
var msBuildPath =string.IsNullOrWhiteSpace(msBuildPathString)?vsLocation.CombineWithFilePath(msBuildDirectory):newFilePath(msBuildPathString);
67
68
68
69
var informationalVersion = EnvironmentVariable("GitAssemblyInformationalVersion");
69
70
@@ -116,6 +117,8 @@ var packageTestWhitelist = new[]
<Description>Provides Observable-based events API for WPF UI controls/eventhandlers. The contents of this package is automatically generated, please target pull-requests to the code generator.</Description>
<Description>Provides Observable-based events API for Winforms UI controls/eventhandlers. The contents of this package is automatically generated, please target pull-requests to the code generator.</Description>
0 commit comments