runprebuild19.sh 223 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 vs2019 /file prebuild48.xml
  11. ;;
  12. esac