aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: 9ffd19db67d84648a029ba9c796845c886a35f62 (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. "windows": {
  10. "command": "${workspaceFolder}\\..\\buchprojekt.wiki\\build.ps1"
  11. },
  12. "group": {
  13. "kind": "build",
  14. "isDefault": true
  15. }
  16. }
  17. ]
  18. }