tasks.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "build",
  8. "type": "shell",
  9. "command": "build.cmd",
  10. "args": [
  11. "RunTest"
  12. ],
  13. "group": {
  14. "kind": "build",
  15. "isDefault": true
  16. },
  17. "problemMatcher": []
  18. },
  19. {
  20. "label": "build&run",
  21. "type": "shell",
  22. "command": "build.cmd",
  23. "args": [
  24. "RunMainProj"
  25. ]
  26. },
  27. {
  28. "label": "TrimTrailingWhitespace",
  29. "type": "shell",
  30. "command": "build.cmd",
  31. "args": [
  32. "TrimTrailingWhitespace"
  33. ],
  34. "problemMatcher": []
  35. },
  36. {
  37. "label": "Watch",
  38. "type": "shell",
  39. "command": "build.cmd",
  40. "args": [
  41. "Watch"
  42. ]
  43. }
  44. ]
  45. }