Skip to content

Commit

Permalink
feat: add VSCode .vscode/tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbrig committed Nov 18, 2023
1 parent 966e66d commit f5bf8c2
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}

0 comments on commit f5bf8c2

Please sign in to comment.