uni-ausarbeitung/templates/latex.tasks.json

24 lines
647 B
JSON
Raw Normal View History

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "latexmk",
"type": "shell",
"command": "${workspaceFolder}/build.sh",
"group": {
"kind": "build",
"isDefault": true
},
2020-05-18 21:24:13 +00:00
"dependsOrder": "sequence",
2020-05-19 19:43:52 +00:00
"dependsOn": ["clean"]
},
{
"label": "clean",
"type": "shell",
"command": "${workspaceFolder}/build.sh clean",
"group": "none",
}
]
}