integration_vscode.txt 713 B

123456789101112131415161718192021222324252627282930
  1. open tasks.json and add this task
  2. "tasks": [
  3. {
  4. "label": "QSP validate",
  5. "group": "test",
  6. "type": "shell",
  7. "options": {
  8. "shell": {
  9. "executable": "cmd.exe",
  10. "args": [
  11. "/q",
  12. "/c"
  13. ]
  14. }
  15. },
  16. "command": "C:\\qsp_parser\\qsp_parser.exe",
  17. "args": [
  18. "${file}"
  19. ],
  20. "problemMatcher": []
  21. }
  22. ]
  23. where "C:\\qsp_parser\\qsp_parser.exe" is your path to qsp_parser.exe
  24. click Terminal > Run Task... > QSP validate
  25. don't forget to save file before call