script-launcher/install-as-dotnet-tool.ps1

8 lines
207 B
PowerShell
Raw Normal View History

2022-05-25 18:20:53 +02:00
dotnet pack ./src -o ./nupkg
$exists = $(Test-CommandExists script-launcher)
$action = $exists ? 'update' : 'install'
dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources