Add Windows and Linux build scripts

This commit is contained in:
Matt Nadareski
2021-06-29 12:04:26 -07:00
parent ec53eee688
commit 14ce896567
2 changed files with 3 additions and 0 deletions

1
build.bat Normal file
View File

@@ -0,0 +1 @@
dotnet publish -f netcoreapp3.1 -r win-x64 -c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true

2
build.sh Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env bash
dotnet publish -f netcoreapp3.1 -r linux-x64 -c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true