tasks.json 919 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build release",
  6. "type": "shell",
  7. "command": "\"C:\\Program Files\\sampctl\\sampctl\" package build release",
  8. "group": {
  9. "kind": "build",
  10. "isDefault": true
  11. },
  12. "isBackground": false,
  13. "presentation": {
  14. "reveal": "silent",
  15. "panel": "dedicated"
  16. },
  17. "problemMatcher": "$sampctl"
  18. },
  19. {
  20. "label": "build debug",
  21. "type": "shell",
  22. "command": "\"C:\\Program Files\\sampctl\\sampctl\" package build debug",
  23. "group": "build",
  24. "isBackground": false,
  25. "presentation": {
  26. "reveal": "silent",
  27. "panel": "dedicated"
  28. },
  29. "problemMatcher": "$sampctl"
  30. }
  31. ]
  32. }