opensim/runprebuild.sh

29 lines
467 B
Bash
Raw Normal View History

2007-07-12 21:06:52 +00:00
#!/bin/sh
case "$1" in
'clean')
2022-10-09 19:10:33 +00:00
dotnet bin/prebuild.dll /file prebuild.xml /clean
;;
'autoclean')
2022-10-09 19:10:33 +00:00
echo y|dotnet bin/prebuild.dll /file prebuild.xml /clean
;;
*)
2022-10-09 19:10:33 +00:00
dotnet bin/prebuild.dll /target vs2022 /targetframework net6_0 /excludedir = "obj | bin" /file prebuild.xml
echo "dotnet build -c Release OpenSim.sln" > compile.sh
chmod +x compile.sh
2022-11-18 03:55:14 +00:00
cp bin/System.Drawing.Common.dll.linux bin/System.Drawing.Common.dll
;;
esac