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:
authorJeremy Nelson <jeremy@biosensinginstrument.com>2019-08-16 11:36:52 +0300
committerMarius Ungureanu <teromario@yahoo.com>2019-08-21 03:12:11 +0300
commit4daf84a71e3c92592506b8d084e21f4b5882076a (patch)
treed3746b904445c6bf57370be0eb8c457ccf75c46e /main/winbuild.bat
parent3bd10b5cabf00ea2bf6c6c01a1c95c101bb11ec2 (diff)
Updated build scripts for Windows.
Call common winbuild.bat from debug and release scripts.
Diffstat (limited to 'main/winbuild.bat')
-rw-r--r--main/winbuild.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/winbuild.bat b/main/winbuild.bat
index 229ccd918c..b48b0e3da1 100644
--- a/main/winbuild.bat
+++ b/main/winbuild.bat
@@ -43,7 +43,7 @@ git submodule update --init --recursive || goto :error
"%MSBUILD_EXE%" external\fsharpbinding\.paket\paket.targets /t:RestorePackages /p:PaketReferences="%~dp0external\fsharpbinding\MonoDevelop.FSharpBinding\paket.references"
-set "CONFIG=DebugWin32"
+if not defined CONFIG (set "CONFIG=DebugWin32")
set "PLATFORM=Any CPU"
"%MSBUILD_EXE%" Main.sln /bl:MonoDevelop.binlog /r /m "/p:Configuration=%CONFIG%" "/p:Platform=%PLATFORM%" %* || goto :error