Enable parallel restore

This commit is contained in:
Joel Verhagen 2016-04-04 09:11:15 -07:00
parent 60b23d5115
commit f6fa1cf060
5 changed files with 11 additions and 14 deletions

View file

@ -72,7 +72,7 @@ $env:PATH = "$env:DOTNET_INSTALL_DIR;$env:PATH"
# Restore the build scripts
Write-Host "Restoring Build Script projects..."
pushd $PSScriptRoot
dotnet restore --disable-parallel --infer-runtimes
dotnet restore --infer-runtimes
if($LASTEXITCODE -ne 0) { throw "Failed to restore" }
popd