Ensure PowerShell is available to everyone working on EmuHawk

see #3013
`dotnet tool restore` to install then `dotnet tool run pwsh` or simply
`dotnet pwsh` to launch
This commit is contained in:
YoshiRulz 2024-06-07 14:27:25 +10:00
parent 1a318941ff
commit c6270241f5
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 13 additions and 0 deletions

13
.config/dotnet-tools.json Normal file
View File

@ -0,0 +1,13 @@
{
"version": 1,
"isRoot": true,
"tools": {
"powershell": {
"version": "7.4.2",
"commands": [
"pwsh"
],
"rollForward": false
}
}
}