Add vscode tasks

This commit is contained in:
Mike Bierlee 2021-08-24 21:15:25 +03:00
parent 199d936070
commit cf010cd002

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
}
}
]
}