From 253b65d9768e875c247addee167f25788818abf6 Mon Sep 17 00:00:00 2001 From: troogs Date: Thu, 17 Sep 2026 15:14:55 +0200 Subject: [PATCH] feat: add task configuration for running Date Wizard --- .vscode/tasks.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..ab21900 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,32 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Run Date Wizard", + "type": "shell", + "command": "go", + "args": [ + "run", + "." + ], + "isBackground": true, + "problemMatcher": [], + "group": "build", + "statusbar": { + "hide": false, + "label": "Run Date Wizard", + "icon": { + "id": "play" + }, + "color": "#6dff72", + "detail": "Running Date Wizard", + "running": { + "icon": { + "id": "gear~spin" + }, + "backgroundColor": "statusBarItem.warningBackground" + } + } + } + ] +} \ No newline at end of file