It provides tasks for the corresponding InvokeBuild Tasks.
- Add the following task to your
.build.ps1file to create/update your vscode tasks. - It expects the InvokeBuild Tasks tasks to be set up.
task UpdateVsCodeTasks {
Invoke-WebRequest `
-Uri 'https://raw.githubusercontent.com/abbgrade/PsBuildTasks/main/VsCode\tasks.json' `
-OutFile "$PSScriptRoot\.vscode\tasks.json"
}