Add vcode tasks

This commit is contained in:
Mike Bierlee 2023-02-20 23:42:27 +03:00
parent 9f1d4ff9ba
commit 363c96eefc

27
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
// 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
}
}
]
}