We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd854dd commit 751efb3Copy full SHA for 751efb3
_Bootstrap.ps1
@@ -62,13 +62,8 @@ if (Test-Path $ProjectFile) {
62
dotnet restore $ProjectFile --ucr
63
}
64
65
-# If there is a dotnet-tools.json file, restore the tools
66
-if (Join-Path $pwd .config dotnet-tools.json | Test-Path) {
67
- Write-Information "Restore dotnet tools"
68
- if (Test-Path $ToolsFile) {
69
- dotnet tool restore --tool-manifest $ToolsFile
70
- }
71
-}
+Write-Information "Restore dotnet tools"
+dotnet tool restore --tool-manifest $ToolsFile
72
73
# Regardless of whether you have a dotnet-tools.json file, we need gitversion global tool
74
# dotnet 8+ can "list" tool names, but this old syntax still works:
0 commit comments