From f5bf8c2fad322247be1fa4854a1acac0dd5754e2 Mon Sep 17 00:00:00 2001 From: Jimmy Briggs Date: Sat, 18 Nov 2023 12:32:25 -0500 Subject: [PATCH] feat: add VSCode .vscode/tasks.json --- .vscode/tasks.json | 66 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..1a2ffbd --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,66 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "windows": { + "options": { + "shell": { + "executable": "pwsh.exe", + "args": [ + "-NoProfile", + "-ExecutionPolicy ByPass", + "-NonInteractive", + "-Command" + ] + } + } + }, + "linux": { + "options": { + "shell": { + "executable": "/usr/bin/pwsh", + "args": [ + "-NoProfile", + "-Command" + ] + } + } + }, + "tasks": [ + { + "label": "Build", + "type": "shell", + "group": "build", + "command": "Invoke-Build Build", + "problemMatcher": [] + }, + { + "label": "Clean", + "type": "shell", + "command": "Invoke-Build Clean", + "problemMatcher": [] + }, + { + "label": "Install", + "type": "shell", + "command": "Invoke-Build Install", + "problemMatcher": [] + }, + { + "label": "Update docs", + "type": "shell", + "command": "Invoke-Build UpdateDocs", + "problemMatcher": [] + }, + { + "label": "Test", + "type": "shell", + "command": "Invoke-Pester -Path ${workspaceFolder}/Tests", + "problemMatcher": [], + "presentation": { + "echo": false, + "showReuseMessage": false + } + } + ] +}