buildD.cmd 317 B

123456789101112131415161718192021
  1. @echo off
  2. rem ** check if directories exists **
  3. if not exist "bin" goto err_bin_not_found
  4. rem ** cleanup **
  5. rmdir /s /q bin\debug
  6. rem ** build **
  7. dotnet build -c Debug
  8. goto done
  9. :err_bin_not_found
  10. echo ERR: missing 'bin' directory in current location
  11. goto exit
  12. :done
  13. echo *** DONE ***
  14. :exit