SSPowerShellBoilerplate/vscode/tasks.json
// Available variables which can be used inside of strings.
// ${workspaceRoot}: the root folder of the team // ${file}: the current opened file // ${relativeFile}: the current opened file relative to workspaceRoot // ${fileBasename}: the current opened file's basename // ${fileDirname}: the current opened file's dirname // ${fileExtname}: the current opened file's extension // ${cwd}: the current working directory of the spawned process { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "0.1.0", "runner": "terminal", // Start PowerShell "windows": { "command": "PowerShell.exe" }, "linux": { "command": "/usr/bin/powershell" }, "osx": { "command": "/usr/local/bin/powershell" }, // The command is a shell script "isShellCommand": true, // Show the output window always "showOutput": "always", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ], // Associate with test task runner "tasks": [ { "taskName": "Clean", "suppressTaskName": true, "showOutput": "always", "args": [ "Invoke-Build -Task Clean" ] }, { "taskName": "Build", "suppressTaskName": true, "isBuildCommand": true, "showOutput": "always", "args": [ "Invoke-Build" ] }, { "taskName": "BuildHelp", "suppressTaskName": true, "showOutput": "always", "args": [ "Invoke-Build -Task BuildDocs" ] }, <% if ($PLASTER_PARAM_SourceType -contains 'PowerShell') { ' { "taskName": "Analyze", "suppressTaskName": true, "showOutput": "always", "args": [ "Invoke-Build -Task Analyze" ] }, ' } %> { "taskName": "Install", "suppressTaskName": true, "showOutput": "always", "args": [ "Invoke-Build -Task Install" ] }, <% if ($PLASTER_PARAM_SourceType -contains 'PowerShell') { @' { "taskName": "Test", "suppressTaskName": true, "isTestCommand": true, "showOutput": "always", "args": [ "Invoke-Build -Task Test" ], "problemMatcher": [ { "owner": "powershell", "fileLocation": ["absolute"], "severity": "error", "pattern": [ { "regexp": "^\\s*(\\[-\\]\\s*.*?)(\\d+)ms\\s*$", "message": 1 }, { "regexp": "^\\s+at\\s+[^,]+,\\s*(.*?):\\s+line\\s+(\\d+)$", "file": 1, "line": 2 } ] } ] } '@ } %> ] } |