mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 00:58:07 +00:00
28 lines
397 B
Bash
Executable File
28 lines
397 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
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
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
|
|
|
|
;;
|
|
|
|
esac
|