Skip to content

Commit 047edc6

Browse files
committed
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.
1 parent 22a533c commit 047edc6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

build.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -restore -build %*"
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -restore -build %*"
33
exit /b %ErrorLevel%

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/eng/common/build.sh" --build --restore $@
16+
"$scriptroot/eng/common/build.sh" --nodeReuse false --build --restore $@

restore.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -restore %*"
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -restore %*"
33
exit /b %ErrorLevel%

restore.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/eng/common/build.sh" --restore $@
16+
"$scriptroot/eng/common/build.sh" --nodeReuse false --restore $@

test.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -test %*"
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -test %*"
33
exit /b %ErrorLevel%

test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/eng/common/build.sh" --test $@
16+
"$scriptroot/eng/common/build.sh" --nodeReuse false --test $@

0 commit comments

Comments
 (0)