.vscode/tasks.json
// Do not edit! This file is generated by New-VSCodeTask.ps1
// Modify the build script instead and regenerate this file. { "version": "2.0.0", "windows": { "options": { "shell": { "executable": "powershell.exe", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command" ] } } }, "linux": { "options": { "shell": { "executable": "/usr/bin/pwsh", "args": [ "-NoProfile", "-Command" ] } } }, "osx": { "options": { "shell": { "executable": "/usr/local/bin/pwsh", "args": [ "-NoProfile", "-Command" ] } } }, "tasks": [ { "label": ".", "type": "shell", "problemMatcher": [ "$msCompile" ], "group": { "kind": "build", "isDefault": true }, "command": "Invoke-Build -Task ." }, { "label": "InstallDependencies", "type": "shell", "problemMatcher": [ "$msCompile" ], "command": "Invoke-Build -Task InstallDependencies" }, { "label": "Analyze", "type": "shell", "problemMatcher": [ "$msCompile" ], "command": "Invoke-Build -Task Analyze" }, { "label": "Test", "type": "shell", "problemMatcher": [ "$msCompile" ], "command": "Invoke-Build -Task Test" }, { "label": "UpdateVersion", "type": "shell", "problemMatcher": [ "$msCompile" ], "command": "Invoke-Build -Task UpdateVersion" }, { "label": "Clean", "type": "shell", "problemMatcher": [ "$msCompile" ], "command": "Invoke-Build -Task Clean" }, { "label": "Archive", "type": "shell", "problemMatcher": [ "$msCompile" ], "command": "Invoke-Build -Task Archive" }, { "label": "?", "type": "shell", "problemMatcher": [], "command": "Invoke-Build -Task ?" } ] } |