2024-02-11 17:28:50 +01:00
|
|
|
set -e
|
|
|
|
|
|
|
|
script_dir=$(dirname $(readlink -f $0))
|
|
|
|
mod_dir=$(dirname $script_dir)
|
|
|
|
pushd $script_dir
|
|
|
|
|
2024-04-04 21:36:32 +02:00
|
|
|
configuration=${1:-Debug}
|
|
|
|
|
2024-02-11 17:28:50 +01:00
|
|
|
# build dll
|
|
|
|
rm -f ../1.4/Assemblies/*
|
2024-04-04 21:36:32 +02:00
|
|
|
dotnet build mod.csproj -c ${configuration}
|
2024-02-11 17:28:50 +01:00
|
|
|
|
|
|
|
# generate About.xml
|
|
|
|
rm -f ../About/About.xml
|
|
|
|
xsltproc -o ../About/About.xml ./about.xml.xslt ./mod.csproj
|
|
|
|
|
|
|
|
popd
|