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:
authorKirill Osenkov <KirillOsenkov@users.noreply.github.com>2017-03-30 08:32:45 +0300
committerMarius Ungureanu <teromario@yahoo.com>2017-03-30 08:32:45 +0300
commitb65971c72877e84af02df03f26b78a2070e305d5 (patch)
treeb655da2d492ce58129e29f3b119f09b81ad6a777 /main/winbuild.bat
parent3e21dda40a2930146d822f7a3dca57b7698b6386 (diff)
Fix comment in winbuild.bat (# is not a valid comment in .bat files) (#2067)
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 28ea301cd6..eb585f291c 100644
--- a/main/winbuild.bat
+++ b/main/winbuild.bat
@@ -21,7 +21,7 @@ git submodule update --init --recursive || goto :error
set "CONFIG=DebugWin32"
set "PLATFORM=Any CPU"
-# only perform integrated restore on RefactoringEssentials, it fails on the whole solution
+rem only perform integrated restore on RefactoringEssentials, it fails on the whole solution
"%MSBUILD_EXE%" external\RefactoringEssentials\RefactoringEssentials.2017.sln /target:Restore %* || goto :error
"%MSBUILD_EXE%" Main.sln /m "/p:Configuration=%CONFIG%" "/p:Platform=%PLATFORM%" %* || goto :error