提交 a2d7d490 编写于 作者: T Tanner Gooding

Merge pull request #5116 from tannergooding/master

Removing erroneous spaces that were added to cibuild.cmd
......@@ -5,15 +5,20 @@ REM Parse Arguments.
set RoslynRoot=%~dp0
set BuildConfiguration=Debug
:ParseArguments
echo [%1]
echo [%BuildConfiguration%]
echo [%Test64%]
if "%1" == "" goto :DoneParsing
if /I "%1" == "/?" call :Usage && exit /b 1
if /I "%1" == "/debug" set BuildConfiguration=Debug && shift && goto :ParseArguments
if /I "%1" == "/release" set BuildConfiguration=Release && shift && goto :ParseArguments
if /I "%1" == "/test32" set Test64=false && shift && goto :ParseArguments
if /I "%1" == "/test64" set Test64=true && shift && goto :ParseArguments
if /I "%1" == "/debug" set BuildConfiguration=Debug&&shift&& goto :ParseArguments
if /I "%1" == "/release" set BuildConfiguration=Release&&shift&& goto :ParseArguments
if /I "%1" == "/test32" set Test64=false&&shift&& goto :ParseArguments
if /I "%1" == "/test64" set Test64=true&&shift&& goto :ParseArguments
call :Usage && exit /b 1
:DoneParsing
pause
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\VsDevCmd.bat"
REM Build the compiler so we can self host it for the full build
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册