This repository has been archived on 2026-05-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Programmierprojekt/.vscode/tasks.json
T
2026-04-05 11:04:23 +02:00

23 lines
510 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Export drawio to SVG",
"type": "shell",
"command": "./scripts/export-drawio.sh",
"problemMatcher": []
},
{
"label": "Export PlantUML to SVG",
"type": "shell",
"command": "./scripts/export-plantuml-to-svg.sh",
"problemMatcher": []
},
{
"label": "Export PlantUML to PNG",
"type": "shell",
"command": "./scripts/export-plantuml-to-png.sh",
"problemMatcher": []
}
]
}