Skip to content

Commit

Permalink
Fix Pathing issue in Builder
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Sep 29, 2017
1 parent 46174d9 commit 79fcaf5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ protected bool BuildInternal (string projectOrSolution, string target, string []
args.AppendFormat ("/p:MonoDroidInstallDirectory=\"{0}\" ", outdir);
psi.EnvironmentVariables ["XBUILD_FRAMEWORK_FOLDERS_PATH"] = frameworksPath;
if (RunningMSBuild)
args.AppendFormat ($"/p:TargetFrameworkRootPath={frameworksPath} ");
args.AppendFormat ($"/p:TargetFrameworkRootPath={frameworksPath}{Path.DirectorySeparatorChar} ");
}
args.AppendFormat ("/t:{0} {1} /p:UseHostCompilerIfAvailable=false /p:BuildingInsideVisualStudio=true", target, QuoteFileName (Path.Combine (Root, projectOrSolution)));
}
Expand Down

0 comments on commit 79fcaf5

Please sign in to comment.