Infer rids for build script restore

This commit is contained in:
Pavel Krymets 2016-03-30 18:33:46 -07:00
parent a21e0ea6b4
commit 58299db161
3 changed files with 3 additions and 3 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
dotnet restore --disable-parallel --infer-runtimes
if($LASTEXITCODE -ne 0) { throw "Failed to restore" }
popd