aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: 5b8133890b2819c7a8034ca0b0c3001a29d8d4ee (plain)
  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.pdf",
  8. "type": "shell",
  9. "linux": {
  10. "command": "${workspaceFolder}/build.sh"
  11. },
  12. "windows": {
  13. "command": "${workspaceFolder}\\..\\buchprojekt\\build.ps1"
  14. },
  15. "group": {
  16. "kind": "build",
  17. "isDefault": true
  18. },
  19. "problemMatcher": []
  20. }
  21. ]
  22. }