Skip to content

Commit

Permalink
Don't use parallel build; the .NET core tooling is too broken.
Browse files Browse the repository at this point in the history
dgrunwald committed Sep 14, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent a8fd3cd commit ed55b50
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion debugbuild.bat
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
@echo Could not find VS2017 MSBuild
@exit /b 1
)
"%MSBUILD%" /m ILSpy.sln /p:Configuration=Debug "/p:Platform=Any CPU"
"%MSBUILD%" ILSpy.sln /p:Configuration=Debug "/p:Platform=Any CPU"
@IF %ERRORLEVEL% NEQ 0 (
@pause
@exit /b 1
2 changes: 1 addition & 1 deletion releasebuild.bat
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
@echo Could not find VS2017 MSBuild
@exit /b 1
)
"%MSBUILD%" /m ILSpy.sln /p:Configuration=Release "/p:Platform=Any CPU"
"%MSBUILD%" ILSpy.sln /p:Configuration=Release "/p:Platform=Any CPU"
@IF %ERRORLEVEL% NEQ 0 (
@pause
@exit /b 1

0 comments on commit ed55b50

Please sign in to comment.