From ff1036f39917ead6f4c558320056a386b273c899 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 7 May 2026 00:07:36 -0300 Subject: [PATCH] feat: add tasks.json --- .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..4ab6964 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,26 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Create project with test solution", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "windows": { + "command": "${workspaceRoot}\\create-test.ps1" + }, + }, + { + "label": "Format code", + "type": "shell", + "group": { + "kind": "none", + }, + "windows": { + "command": "${workspaceRoot}\\format-code.ps1" + }, + } + ], +} \ No newline at end of file