Adding a workaround for the sockets issue when restoring with many nuget feeds.
This commit is contained in:
parent
c0224a2df6
commit
812d5dfeb6
2 changed files with 6 additions and 0 deletions
|
@ -76,6 +76,9 @@ $env:DOTNET_MULTILEVEL_LOOKUP=0
|
|||
# Turn off MSBuild Node re-use
|
||||
$env:MSBUILDDISABLENODEREUSE=1
|
||||
|
||||
# Workaround for the sockets issue when restoring with many nuget feeds.
|
||||
$env:DOTNET_SYSTEM_NET_HTTP_USESOCKETSHTTPHANDLER=0
|
||||
|
||||
# Enable vs test console logging
|
||||
$env:VSTEST_BUILD_TRACE=1
|
||||
$env:VSTEST_TRACE_BUILD=1
|
||||
|
|
|
@ -154,6 +154,9 @@ export DOTNET_MULTILEVEL_LOOKUP=0
|
|||
# Turn off MSBuild Node re-use
|
||||
export MSBUILDDISABLENODEREUSE=1
|
||||
|
||||
# Workaround for the sockets issue when restoring with many nuget feeds.
|
||||
export DOTNET_SYSTEM_NET_HTTP_USESOCKETSHTTPHANDLER=0
|
||||
|
||||
# Install a stage 0
|
||||
INSTALL_ARCHITECTURE=$ARCHITECTURE
|
||||
archlower="$(echo $ARCHITECTURE | awk '{print tolower($0)}')"
|
||||
|
|
Loading…
Reference in a new issue