OpenSim-Sasquatch/runprebuild.sh
2024-04-20 23:37:37 +01:00

28 lines
470 B
Bash
Executable file

#!/bin/sh
case "$1" in
'clean')
dotnet bin/prebuild.dll /file prebuild.xml /clean
;;
'autoclean')
echo y|dotnet bin/prebuild.dll /file prebuild.xml /clean
;;
*)
cp bin/System.Drawing.Common.dll.linux bin/System.Drawing.Common.dll
dotnet bin/prebuild.dll /target vs2022 /targetframework net8_0 /excludedir = "obj | bin" /file prebuild.xml
echo "dotnet build -c Release OpenSim.sln" > compile.sh
chmod +x compile.sh
;;
esac