This repository was archived by the owner on Jan 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,22 +11,16 @@ init:
1111 }
1212
1313build_script :
14- - cmd : taskkill /f /im MSBuild.exe /fi "memusage gt 40" 2>NUL
14+ - cmd : echo /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" >> msbuild.rsp
1515 - cmd : build.cmd /restore
1616 - cmd : build.cmd /release
17- - cmd : taskkill /f /im MSBuild.exe /fi "memusage gt 40" 2>NUL
1817
1918install :
2019- cmd : git submodule update --init --recursive
2120
2221# we run the tests ourselves in build.proj for coverage
2322test : off
2423
25- # build cache to preserve files/folders between builds
26- cache :
27- - ' %LocalAppData%\NuGet\Cache'
28- - ' %USERPROFILE%\.nuget\packages'
29-
3024deploy :
3125 - provider : NuGet
3226 api_key :
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ set BuildConfiguration=Debug
77set MSBuildTarget = All
88set NodeReuse = true
99set MultiProcessor = /m
10+ set MSBuildAdditionalArguments = /m
1011
1112:ParseArguments
1213if " %1 " == " " goto :DoneParsing
@@ -20,7 +21,7 @@ if /I "%1" == "/test" set MSBuildTarget=Test&&shift&& goto :ParseArguments
2021if /I " %1 " == " /restore" set MSBuildTarget = Restore&& shift&& goto :ParseArguments
2122if /I " %1 " == " /no-node-reuse" set NodeReuse = false&& shift&& goto :ParseArguments
2223if /I " %1 " == " /no-multi-proc" set MultiProcessor = && shift&& goto :ParseArguments
23- MSBuildAdditionalArguments=" %1 %MSBuildAdditionalArguments" % &&shift&& goto :ParseArguments
24+ set MSBuildAdditionalArguments = %1 %MSBuildAdditionalArguments% && shift&& goto :ParseArguments
2425:DoneParsing
2526
2627:: Detect if MSBuild is in the path
You can’t perform that action at this time.
0 commit comments