Fix warning from CLI parser (#3875)

This commit is contained in:
gruve-p
2022-06-20 06:07:58 +02:00
committed by GitHub
parent ea2a200302
commit 495d4b82cf
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
dotnet run --no-launch-profile --no-build -c Release -p .\BTCPayServer\BTCPayServer.csproj -- $args
dotnet run --no-launch-profile --no-build -c Release --project .\BTCPayServer\BTCPayServer.csproj -- $args

2
run.sh
View File

@@ -1,3 +1,3 @@
#!/bin/bash
dotnet run --no-launch-profile --no-build -c Release -p "BTCPayServer/BTCPayServer.csproj" -- $@
dotnet run --no-launch-profile --no-build -c Release --project "BTCPayServer/BTCPayServer.csproj" -- $@