From 047edc63a80f817c320fe403347c9da332096201 Mon Sep 17 00:00:00 2001 From: Brice Lambson Date: Tue, 15 Feb 2022 13:36:15 -0800 Subject: [PATCH] Unlink of file '.dotnet/dotnet.exe' failed. Should I try again? (y/n) I can't take it anymore! I'm going back to the way it used to work. No amount of perf gain is worth this pain. --- build.cmd | 2 +- build.sh | 2 +- restore.cmd | 2 +- restore.sh | 2 +- test.cmd | 2 +- test.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.cmd b/build.cmd index 03ecc029305..068028ee3dd 100644 --- a/build.cmd +++ b/build.cmd @@ -1,3 +1,3 @@ @echo off -powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -restore -build %*" +powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -restore -build %*" exit /b %ErrorLevel% diff --git a/build.sh b/build.sh index 8477d5af881..83eb5ab2619 100755 --- a/build.sh +++ b/build.sh @@ -13,4 +13,4 @@ while [[ -h $source ]]; do done scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" -"$scriptroot/eng/common/build.sh" --build --restore $@ +"$scriptroot/eng/common/build.sh" --nodeReuse false --build --restore $@ diff --git a/restore.cmd b/restore.cmd index 2d66d87cc1e..09bd123dab4 100644 --- a/restore.cmd +++ b/restore.cmd @@ -1,3 +1,3 @@ @echo off -powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -restore %*" +powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -restore %*" exit /b %ErrorLevel% diff --git a/restore.sh b/restore.sh index 02531e1d710..5bf5d74bef6 100755 --- a/restore.sh +++ b/restore.sh @@ -13,4 +13,4 @@ while [[ -h $source ]]; do done scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" -"$scriptroot/eng/common/build.sh" --restore $@ +"$scriptroot/eng/common/build.sh" --nodeReuse false --restore $@ diff --git a/test.cmd b/test.cmd index 19402256cde..9e1dfa4edb0 100644 --- a/test.cmd +++ b/test.cmd @@ -1,3 +1,3 @@ @echo off -powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -test %*" +powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -test %*" exit /b %ErrorLevel% diff --git a/test.sh b/test.sh index 637dec3600c..98a09baadbd 100755 --- a/test.sh +++ b/test.sh @@ -13,4 +13,4 @@ while [[ -h $source ]]; do done scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" -"$scriptroot/eng/common/build.sh" --test $@ +"$scriptroot/eng/common/build.sh" --nodeReuse false --test $@