Files
opensim/runprebuild.sh
Justin Clark-Casey (justincc) 4563e7e04a Get runprebuild.sh to generate a vs2010 for xbuild to work with .NET 4 rather than vs2008
At least since 2009, Monodevelop has been able to load vs2010 files as well
2013-11-13 00:25:41 +00:00

33 lines
305 B
Bash
Executable File

#!/bin/sh
case "$1" in
'clean')
mono bin/Prebuild.exe /clean
;;
'autoclean')
echo y|mono bin/Prebuild.exe /clean
;;
'vs2010')
mono bin/Prebuild.exe /target vs2010
;;
*)
mono bin/Prebuild.exe /target nant
mono bin/Prebuild.exe /target vs2010
;;
esac