runprebuild.sh 268 B

123456789101112131415161718192021222324252627
  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
  14. rm -fr bin/addin-db-002