You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
879 B
30 lines
879 B
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"configurations": [
|
|
{
|
|
"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}"
|
|
}
|
|
]
|
|
|
|
}
|