add script to package a debug zip

This commit is contained in:
Colin McMillen 2023-07-24 18:55:30 -04:00
parent 25ca0d99ff
commit cdc2cb336d

3
package_debug_zip.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
mkdir Totte && cp -r bin/Debug/net7.0/* Totte/ && zip -r totte.zip Totte/ && rm -rf Totte