mirror of
https://github.com/OpenSim-NGC/OpenSim-Sasquatch.git
synced 2024-11-21 14:29:10 -07:00
26 lines
250 B
Bash
26 lines
250 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
|
|
'clean')
|
|
|
|
mono bin/Prebuild.exe /clean
|
|
|
|
;;
|
|
|
|
|
|
'autoclean')
|
|
|
|
echo y|mono bin/Prebuild.exe /clean
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
mono bin/Prebuild.exe /target vs2019 /targetframework v4_8 /excludedir = "obj | bin"
|
|
|
|
;;
|
|
|
|
esac
|