mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 09:02:50 +00:00
26 lines
307 B
Bash
Executable File
26 lines
307 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
|
|
'clean')
|
|
mono bin/Prebuild.exe /file prebuild.xml /clean
|
|
|
|
;;
|
|
|
|
|
|
'autoclean')
|
|
|
|
echo y|mono bin/Prebuild.exe /file prebuild.xml /clean
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
mono bin/Prebuild.exe /target vs2022 /targetframework net6_0 /excludedir = "obj | bin" /file prebuild.xml
|
|
|
|
;;
|
|
|
|
esac
|