ncui/.vscode/tasks.json

19 lines
No EOL
276 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "dub: build example (debug)",
"type": "shell",
"command": "dub",
"args": [
"build",
":example",
"--build=debug"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
}
]
}