Disabling msbuild node reuse for CLI full build.
This commit is contained in:
parent
4883d9643b
commit
9706863629
2 changed files with 6 additions and 0 deletions
|
@ -75,6 +75,9 @@ $env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
|
||||||
# Don't resolve shared frameworks from user or global locations
|
# Don't resolve shared frameworks from user or global locations
|
||||||
$env:DOTNET_MULTILEVEL_LOOKUP=0
|
$env:DOTNET_MULTILEVEL_LOOKUP=0
|
||||||
|
|
||||||
|
# Turn off MSBuild Node re-use
|
||||||
|
$env:MSBUILDDISABLENODEREUSE=1
|
||||||
|
|
||||||
# Enable vs test console logging
|
# Enable vs test console logging
|
||||||
$env:VSTEST_BUILD_TRACE=1
|
$env:VSTEST_BUILD_TRACE=1
|
||||||
$env:VSTEST_TRACE_BUILD=1
|
$env:VSTEST_TRACE_BUILD=1
|
||||||
|
|
|
@ -151,6 +151,9 @@ export VSTEST_TRACE_BUILD=1
|
||||||
# Don't resolve shared frameworks from user or global locations
|
# Don't resolve shared frameworks from user or global locations
|
||||||
export DOTNET_MULTILEVEL_LOOKUP=0
|
export DOTNET_MULTILEVEL_LOOKUP=0
|
||||||
|
|
||||||
|
# Turn off MSBuild Node re-use
|
||||||
|
export MSBUILDDISABLENODEREUSE=1
|
||||||
|
|
||||||
# Install a stage 0
|
# Install a stage 0
|
||||||
INSTALL_ARCHITECTURE=$ARCHITECTURE
|
INSTALL_ARCHITECTURE=$ARCHITECTURE
|
||||||
archlower="$(echo $ARCHITECTURE | awk '{print tolower($0)}')"
|
archlower="$(echo $ARCHITECTURE | awk '{print tolower($0)}')"
|
||||||
|
|
Loading…
Reference in a new issue