mirror of
https://github.com/OpenSim-NGC/OpenSim-Sasquatch.git
synced 2024-11-21 14:29:10 -07:00
28 lines
470 B
Bash
Executable file
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
|