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:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2016-09-18 15:42:23 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2016-09-18 15:42:23 +0300
commitca4766ed9fd95beb9dfdc380eb87dc7bebc11dad (patch)
tree791e260ef3ddc2d5483c890886f8ad7179f5acc5 /main/winbuild.bat
parent5532394e1a663844e79a9e8f177c9f12fa392e66 (diff)
[Windows] Only use editbin when available.
Diffstat (limited to 'main/winbuild.bat')
-rw-r--r--main/winbuild.bat5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/winbuild.bat b/main/winbuild.bat
index 616e5ba107..0c28c935c0 100644
--- a/main/winbuild.bat
+++ b/main/winbuild.bat
@@ -1,4 +1,7 @@
".nuget\NuGet.exe" restore Main.sln
"external\RefactoringEssentials\.nuget\NuGet.exe" restore external\RefactoringEssentials\RefactoringEssentials.sln
"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" Main.sln /m /p:Configuration=ReleaseWin32 /p:Platform="Any CPU"
-"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\editbin.exe" /largeaddressaware build/bin/MonoDevelop.exe \ No newline at end of file
+
+if exist "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\editbin.exe" then (
+ "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\editbin.exe" /largeaddressaware build/bin/MonoDevelop.exe
+) \ No newline at end of file