mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-13 01:42:29 +00:00
33 lines
924 B
JSON
33 lines
924 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Pester Tests",
|
|
"script": "Invoke-Pester",
|
|
"args": [],
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Launch (current file)",
|
|
"script": "${file}",
|
|
"args": [],
|
|
"cwd": "${file}"
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "attach",
|
|
"name": "PowerShell Attach to Host Process",
|
|
"processId": "${command.PickPSHostProcess}",
|
|
"runspaceId": 1
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Interactive Session",
|
|
"cwd": "${workspaceRoot}"
|
|
}
|
|
]
|
|
}
|