Remove --parallel

Now that dotnet cli is using NuGet, it's parallel by default!
This commit is contained in:
Andrew Stanton-Nurse 2016-01-19 12:26:52 -08:00
parent 3e1b55701a
commit 2564e466e4
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ restoreDir=''
default currentDir = '${ Directory.GetCurrentDirectory() }'
default restoreDir = '${ currentDir }'
default restore_options=' ${ E("KOREBUILD_DOTNET_RESTORE_OPTIONS") } ${ IsLinux ? string.Empty : "--parallel" }'
default restore_options=' ${ E("KOREBUILD_DOTNET_RESTORE_OPTIONS") }
dotnet command='restore${ restore_options }' workingDir='${ restoreDir }'