tasks.json 909 B

12345678910111213141516171819202122232425262728293031323334353637
  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. }