TinyLifeExampleMod/Publish.bat
2021-12-08 23:34:22 +01:00

11 lines
310 B
Batchfile

@echo off
rem move to the script directory
cd /d "%~dp0"
rem build the mod
dotnet build
rem zip the mod
cd ./bin/Debug/net6.0
for /F %%p in ('dir /b "*.dll"') do (set file=%%p)
set dest=%file:~0,-4%.zip
tar -acf ../%dest% --exclude ref --exclude *.pdb --exclude *.deps.json *
echo Published to bin/Debug/%dest%