From ec2858770f287aef8bcbb31c4c098f808ca57fe2 Mon Sep 17 00:00:00 2001 From: neru Date: Wed, 17 Jun 2026 20:55:55 -0300 Subject: [PATCH] build: add vscode tasks --- .vscode/tasks.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..a291db9 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,26 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Create project", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "windows": { + "command": "${workspaceRoot}\\create-project.ps1" + }, + }, + { + "label": "Format code", + "type": "shell", + "group": { + "kind": "none", + }, + "windows": { + "command": "${workspaceRoot}\\format-code.ps1" + }, + } + ], +} \ No newline at end of file