From 4d913c6cb806945d8084e007a22f51fc6a5a15e3 Mon Sep 17 00:00:00 2001 From: Dominik Becker Date: Thu, 23 May 2019 15:17:12 +0000 Subject: [PATCH] #21 added VS Code build task configuration [skip CI] --- .vscode/tasks.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..09f8121 --- /dev/null +++ b/.vscode/tasks.json @@ -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" + } + ] +} \ No newline at end of file