Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2015-11-24 20:46:28 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2015-11-24 20:46:28 +0300
commitfdcef13057a9c4a9bc924602c9b2b33c1da3bf63 (patch)
treef5d45bca682a39c3946dbd9fee281e152288a4aa /main/winbuild.bat
parentee4190106f0d102c4fdce57fc3c5637cbce7b9aa (diff)
parent07a993cf6d80660fde31099c1aca8029a3035807 (diff)
Merge branch 'master' into newExceptionDialog
Diffstat (limited to 'main/winbuild.bat')
-rw-r--r--main/winbuild.bat8
1 files changed, 7 insertions, 1 deletions
diff --git a/main/winbuild.bat b/main/winbuild.bat
index dec63ce9d9..805ac02907 100644
--- a/main/winbuild.bat
+++ b/main/winbuild.bat
@@ -1 +1,7 @@
-"%WinDir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" Main.sln /m /p:Configuration=DebugWin32 /p:Platform="Any CPU"
+set filename=%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe
+
+if not exist "%filename%" (
+ set filename=%WinDir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
+)
+
+"%filename%" Main.sln /m /p:Configuration=DebugWin32 /p:Platform="Any CPU"