PsBuildTasks/VsCode at main · abbgrade/PsBuildTasks · GitHub
Skip to content

Latest commit

 

History

History

Folders and files

Readme.md

VSCode Tasks

It provides tasks for the corresponding InvokeBuild Tasks.

Usage

  • Add the following task to your .build.ps1 file 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"
}