mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-13 18:02:30 +00:00
55 lines
1.8 KiB
JSON
55 lines
1.8 KiB
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": "2.0.0",
|
|
// Start PowerShell
|
|
"windows": {
|
|
"command": "${env:windir}\\sysnative\\windowspowershell\\v1.0\\PowerShell.exe",
|
|
"args": [
|
|
"-NoProfile",
|
|
"-ExecutionPolicy",
|
|
"Bypass"
|
|
]
|
|
},
|
|
"linux": {
|
|
"command": "/usr/bin/powershell",
|
|
"args": [
|
|
"-NoProfile"
|
|
]
|
|
},
|
|
"osx": {
|
|
"command": "/usr/local/bin/powershell",
|
|
"args": [
|
|
"-NoProfile"
|
|
]
|
|
},
|
|
// Show the output window always
|
|
"showOutput": "always",
|
|
// Associate with test task runner
|
|
"tasks": [{
|
|
"label": "Build Help",
|
|
"args": [
|
|
"Write-Host 'Invoking platyPS'; New-ExternalHelp -Path .\\docs\\en-US -OutputPath .\\SnipeitPS\\en-US -Force;",
|
|
"Invoke-Command { Write-Host 'Completed Build task in task runner.' }"
|
|
]
|
|
},
|
|
{
|
|
"label": "Test",
|
|
"suppressTaskName": true,
|
|
"isTestCommand": true,
|
|
"args": [
|
|
"Write-Host 'Invoking Pester'; Invoke-Pester -PesterOption @{IncludeVSCodeMarker=$true};",
|
|
"Invoke-Command { Write-Host 'Completed Test task in task runner.' }"
|
|
],
|
|
"problemMatcher": "$pester"
|
|
}
|
|
]
|
|
}
|