From ea6936ac865cb3cbf14c60abaf7b713b72cb82b2 Mon Sep 17 00:00:00 2001 From: Drofseh Date: Fri, 16 May 2025 13:13:57 -0700 Subject: [PATCH] Create tasks.json --- .vscode/tasks.json | 57 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..b0a47fc --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,57 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "hemtt build", + "type": "shell", + "command": "hemtt build", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "hemtt build verbose", + "type": "shell", + "command": "hemtt build -vv", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": false + } + }, + { + "label": "hemtt check", + "type": "shell", + "command": "hemtt check", + "problemMatcher": [], + "group": { + "kind": "test", + "isDefault": true + } + }, + { + "label": "hemtt release", + "type": "shell", + "command": "hemtt release" + }, + { + "label": "hemtt dev", + "type": "shell", + "command": "hemtt dev" + }, + { + "label": "hemtt install", + "type": "shell", + "command": "winget install hemtt" + }, + { + "label": "hemtt upgrade", + "type": "shell", + "command": "winget upgrade hemtt" + } + ] +} \ No newline at end of file