htlle-da-vorlage/.vscode/tasks.json
gottsi 8463d2c46b Added .vscode folder:
* Snippets for bibtex
 * Recommended  extensions
 * Snippets for LaTeX extended markdown
 * General settings for cSpell, todoHighlights and pandocCiter
 * Tasks for building of thesis
2023-02-25 22:53:59 +01:00

24 lines
624 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build PDF",
"command": "wsl make pdf -C HTLLE-DA-Vorlage SOURCEDIR='$(pwd)'",
"type": "shell",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Check Spelling",
"command": "wsl make spellcheck -C HTLLE-DA-Vorlage SOURCEDIR='$(pwd)'",
"type": "shell",
"problemMatcher": [],
"group": {
"kind": "test",
}
}
]
}