2019-05-23 15:17:12 +00:00
|
|
|
{
|
|
|
|
// 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",
|
2020-06-28 21:59:47 +00:00
|
|
|
"command": "${workspaceFolder}/build.sh",
|
2019-05-23 15:17:12 +00:00
|
|
|
"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"]
|
2019-05-23 15:17:12 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "clean",
|
|
|
|
"type": "shell",
|
2020-06-28 21:59:47 +00:00
|
|
|
"command": "${workspaceFolder}/build.sh clean",
|
|
|
|
"group": "none",
|
2019-05-23 15:17:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|