mirror of
https://github.com/opensim/opensim.git
synced 2026-08-14 17:55:39 +08:00
26 lines
313 B
Bash
Executable File
26 lines
313 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
|
|
|
|
;;
|
|
|
|
esac
|