Go back to running `dnu restore` with Mono

- can't fix #290 at this time; need Ubuntu 14.04 on Travis
This commit is contained in:
Doug Bunting 2015-10-12 18:51:11 -07:00
parent f8b7b6ba41
commit 4e87b0c972
1 changed files with 2 additions and 2 deletions

View File

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