mirror of
https://github.com/opensim/opensim.git
synced 2026-08-15 02:02:52 +08: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
|