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:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2016-10-12 02:03:37 +0300
committerMarius Ungureanu <teromario@yahoo.com>2016-10-12 02:03:37 +0300
commit5a7bea536324331af6ce017b812ab3930c8ded58 (patch)
treeaf1770d6a7c103f5a348d5db239751d3c1b48368 /main/winbuild.bat
parent0de7184af86b5ce867bde06f0ee777eed3fd0bd2 (diff)
Bat cleanup (#1648)
* Add missing ignore * Cleanup windows batch files * msysgit supports executing *.bat directly, so we don't need the .sh * pass arguments through to msbuild * move editbin call to msbuild * add git submodule update (like makefiles do) * default to debug build (like makefiles do) * use consistent NuGet.exe
Diffstat (limited to 'main/winbuild.bat')
-rw-r--r--main/winbuild.bat18
1 files changed, 3 insertions, 15 deletions
diff --git a/main/winbuild.bat b/main/winbuild.bat
index 7a0e4fc145..f7677aa27b 100644
--- a/main/winbuild.bat
+++ b/main/winbuild.bat
@@ -1,16 +1,4 @@
+git submodule update --init --recursive
"external\nuget-binary\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"
-
-if DEFINED VS150COMNTOOLS (
- set VSPATH="%VS150COMNTOOLS%"
-) else if DEFINED VS140COMNTOOLS (
- set VSPATH="%VS140COMNTOOLS%"
-) else if DEFINED VS120COMNTOOLS (
- set VSPATH="%VS120COMNTOOLS%"
-) else if DEFINED VS110COMNTOOLS (
- set VSPATH="%VS110COMNTOOLS%"
-)
-if exist %VSPATH%\..\..\VC\bin\editbin.exe (
- %VSPATH%\..\..\VC\bin\editbin.exe /largeaddressaware build\bin\MonoDevelop.exe
-) \ No newline at end of file
+"external\nuget-binary\NuGet.exe" restore external\RefactoringEssentials\RefactoringEssentials.sln
+"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" Main.sln /m /p:Configuration=DebugWin32 /p:Platform="Any CPU" %*