new build and release scripts
This commit is contained in:
parent
518639b2e8
commit
9c5d067635
3 changed files with 5 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@ BuypeebApp.exe
|
|||
ui.glade~
|
||||
bin/
|
||||
obj/
|
||||
out/
|
||||
|
|
2
build.sh
2
build.sh
|
@ -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
2
release.sh
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
dotnet publish -c Release -r linux-x64 --output ./out/release/linux/ -p:PublishSingleFile=true -p:PublishTrimmed=true
|
Loading…
Reference in a new issue