Skip to content

Commit

Permalink
Fixed the builder to use RequiresMSBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Nov 7, 2017
1 parent dcb2286 commit 1018da7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public string XABuildExe {
if (IsUnix) {
RunningMSBuild = true;
var useMSBuild = Environment.GetEnvironmentVariable ("USE_MSBUILD");
if (!string.IsNullOrEmpty (useMSBuild) && useMSBuild == "0") {
if (!string.IsNullOrEmpty (useMSBuild) && useMSBuild == "0" && !RequiresMSBuild) {
RunningMSBuild = false;
}
#if DEBUG
Expand Down

0 comments on commit 1018da7

Please sign in to comment.