Disabling parallel restore on Mac and Linux
This commit is contained in:
parent
2e02adcfc7
commit
10964cc04f
|
|
@ -10,6 +10,6 @@ restoreDir=''
|
|||
default currentDir = '${ Directory.GetCurrentDirectory() }'
|
||||
default restoreDir = '${ currentDir }'
|
||||
|
||||
default restore_options=' ${ E("KOREBUILD_DOTNET_RESTORE_OPTIONS") } '
|
||||
default restore_options=' ${ E("KOREBUILD_DOTNET_RESTORE_OPTIONS") } ${ !IsLinux ? "--parallel none" : string.Empty }'
|
||||
|
||||
dotnet command='restore${ restore_options }' workingDir='${ restoreDir }'
|
||||
|
|
|
|||
Loading…
Reference in New Issue