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:
authorMichael Hutchinson <m.j.hutchinson@gmail.com>2015-04-09 19:30:19 +0300
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2015-04-17 00:40:16 +0300
commit16f319d4067a2146af0bf10df44efbbe915beb2b (patch)
tree97f8ba0925bbb0ed699f69ffe63e0b7461a461be
parent465e3b6e64b876df389d520aac5f94650f3c74fe (diff)
Parallel build in winbuild.sh
-rw-r--r--main/winbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/winbuild.sh b/main/winbuild.sh
index 49029287b8..5d71de36bc 100644
--- a/main/winbuild.sh
+++ b/main/winbuild.sh
@@ -1,4 +1,4 @@
./.nuget/NuGet.exe restore Main.sln
export PATH="/c/Program Files (x86)/MSBuild/14.0/Bin:$PATH"
pushd ..; git submodule update --init --recursive || exit 1; popd
-MSBuild.exe Main.sln -p:Configuration=DebugWin32 $*
+MSBuild.exe -m Main.sln -p:Configuration=DebugWin32 $*