#21 added VS Code build task configuration [skip CI]

This commit is contained in:
Dominik Becker 2019-05-23 15:17:12 +00:00
parent 45047353a0
commit 4d913c6cb8

22
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
// 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": "latexmk -latexoption=\"-shell-escape\" main.tex",
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "clean"
},
{
"label": "clean",
"type": "shell",
"command": "latexmk -C"
}
]
}