new build and release scripts

This commit is contained in:
Lynne Megido 2020-09-01 19:01:36 +10:00
parent 518639b2e8
commit 9c5d067635
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90
3 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -2,4 +2,5 @@ poop/
BuypeebApp.exe
ui.glade~
bin/
obj/
obj/
out/

View File

@ -1,2 +1,2 @@
#!/bin/sh
mcs -pkg:gtk-sharp-3.0 -resource:ui.glade *.cs
dotnet build -o out/debug/

2
release.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
dotnet publish -c Release -r linux-x64 --output ./out/release/linux/ -p:PublishSingleFile=true -p:PublishTrimmed=true