runprebuild.sh 240 B

1234567891011121314151617181920212223242526
  1. #!/bin/sh
  2. case "$1" in
  3. 'clean')
  4. mono bin/Prebuild.exe /clean
  5. ;;
  6. 'autoclean')
  7. echo y|mono bin/Prebuild.exe /clean
  8. ;;
  9. *)
  10. mono bin/Prebuild.exe /target nant
  11. mono bin/Prebuild.exe /target vs2015
  12. ;;
  13. esac