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>2018-04-12 21:39:23 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2018-06-14 20:59:35 +0300
commit4bb424dca357f9766a17f1df1c34f6bb5d832bc1 (patch)
treecb77194a5756dcb97774d2d8e7dcada421260418 /main/winbuild.bat
parentf350c29e1ece3a03ae8c26f5954043a8d57201b1 (diff)
[Win32] MSBuild restore whole solution
Else we end up with missing deps
Diffstat (limited to 'main/winbuild.bat')
-rw-r--r--main/winbuild.bat5
1 files changed, 1 insertions, 4 deletions
diff --git a/main/winbuild.bat b/main/winbuild.bat
index a1b838579f..6a2a16caa2 100644
--- a/main/winbuild.bat
+++ b/main/winbuild.bat
@@ -38,10 +38,7 @@ git submodule update --init --recursive || goto :error
set "CONFIG=DebugWin32"
set "PLATFORM=Any CPU"
-rem only perform integrated restore on RefactoringEssentials, it fails on the whole solution
-"%MSBUILD_EXE%" external\RefactoringEssentials\RefactoringEssentials.sln /target:Restore %* || goto :error
-
-"%MSBUILD_EXE%" Main.sln /bl:MonoDevelop.binlog /m "/p:Configuration=%CONFIG%" "/p:Platform=%PLATFORM%" %* || goto :error
+"%MSBUILD_EXE%" Main.sln /bl:MonoDevelop.binlog /r /m "/p:Configuration=%CONFIG%" "/p:Platform=%PLATFORM%" %* || goto :error
goto :eof
:error