tasks.json 975 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "-t",
  12. "RunTest"
  13. ],
  14. "group": {
  15. "kind": "build",
  16. "isDefault": true
  17. },
  18. "problemMatcher": []
  19. },
  20. {
  21. "label": "build&run",
  22. "type": "shell",
  23. "command": "build.cmd",
  24. "args": [
  25. "-t",
  26. "RunMainProj"
  27. ]
  28. },
  29. {
  30. "label": "TrimTrailingWhitespace",
  31. "type": "shell",
  32. "command": "build.cmd",
  33. "args": [
  34. "-t",
  35. "TrimTrailingWhitespace"
  36. ],
  37. "problemMatcher": []
  38. }
  39. ]
  40. }