diff --git a/build.ps1 b/build.ps1 new file mode 100644 index 000000000..b7b04089a --- /dev/null +++ b/build.ps1 @@ -0,0 +1 @@ +dotnet build -c Release .\BTCPayServer\BTCPayServer.csproj diff --git a/build.sh b/build.sh new file mode 100644 index 000000000..edb226498 --- /dev/null +++ b/build.sh @@ -0,0 +1 @@ +dotnet build -c Release BTCPayServer/BTCPayServer.csproj diff --git a/run.ps1 b/run.ps1 new file mode 100644 index 000000000..437ebc9ee --- /dev/null +++ b/run.ps1 @@ -0,0 +1 @@ +dotnet run --no-launch-profile --no-build -c Release -p .\BTCPayServer\BTCPayServer.csproj -- $args diff --git a/run.sh b/run.sh new file mode 100644 index 000000000..cd596893e --- /dev/null +++ b/run.sh @@ -0,0 +1 @@ +dotnet run --no-launch-profile --no-build -c Release -p "BTCPayServer/BTCPayServer.csproj" -- "$@"