diff options
| author | Linnea Gräf <nea@nea.moe> | 2025-05-12 20:33:57 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-05-12 20:33:57 +0200 |
| commit | 4a6ddab6da2bfce1c97a1138ba529f9b9691d998 (patch) | |
| tree | d2eb64f2b12af7a268cfde5685080db00aef3941 /.vscode/tasks.json | |
| download | boobbot-4a6ddab6da2bfce1c97a1138ba529f9b9691d998.tar.gz boobbot-4a6ddab6da2bfce1c97a1138ba529f9b9691d998.tar.bz2 boobbot-4a6ddab6da2bfce1c97a1138ba529f9b9691d998.zip | |
Initial commit
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..abbfa73 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,17 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "type": "dub", + "run": false, + "cwd": "${workspaceFolder}", + "problemMatcher": [ + "$dmd" + ], + "group": "build", + "label": "dub: Build boobbot" + } + ] + } |
