tasks.json 1013 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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": "BuildUtility",
  22. "type": "shell",
  23. "command": "build.cmd",
  24. "args": [
  25. "-t",
  26. "BuildUtility"
  27. ],
  28. "problemMatcher": []
  29. },
  30. {
  31. "label": "TrimTrailingWhitespace",
  32. "type": "shell",
  33. "command": "build.cmd",
  34. "args": [
  35. "-t",
  36. "TrimTrailingWhitespace"
  37. ],
  38. "problemMatcher": []
  39. }
  40. ]
  41. }