tasks.json 595 B

12345678910111213141516171819202122232425
  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. "command": "cargo",
  8. "args": ["test"],
  9. "problemMatcher": [
  10. "$rustc"
  11. ],
  12. "group": "test",
  13. "label": "test"
  14. },
  15. {
  16. "command": "cargo",
  17. "args": ["build"],
  18. "problemMatcher": [
  19. "$rustc"
  20. ],
  21. "group": "build",
  22. "label": "cargo build"
  23. }
  24. ]
  25. }