Add build and run scripts

This commit is contained in:
nicolas.dorier
2018-03-06 09:14:45 -05:00
parent 937bd07daa
commit d690cd6b7b
4 changed files with 4 additions and 0 deletions

1
build.ps1 Normal file
View File

@@ -0,0 +1 @@
dotnet build -c Release .\BTCPayServer\BTCPayServer.csproj

1
build.sh Normal file
View File

@@ -0,0 +1 @@
dotnet build -c Release BTCPayServer/BTCPayServer.csproj

1
run.ps1 Normal file
View File

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

1
run.sh Normal file
View File

@@ -0,0 +1 @@
dotnet run --no-launch-profile --no-build -c Release -p "BTCPayServer/BTCPayServer.csproj" -- "$@"