poodinis/.vscode/tasks.json

28 lines
676 B
JSON
Raw Permalink Normal View History

2021-08-24 20:15:25 +02:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Dub Build",
"type": "shell",
"command": "dub build",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Dub Test",
"type": "shell",
"command": "dub test",
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": true
}
}
]
2023-03-07 00:43:03 +01:00
}