|
302 | 302 | ], |
303 | 303 | "debuggers": [ |
304 | 304 | { |
305 | | - "type": "powershell", |
| 305 | + "type": "PowerShell", |
306 | 306 | "label": "PowerShell", |
307 | 307 | "enableBreakpointsFor": { |
308 | 308 | "languageIds": [ |
|
324 | 324 | "description": "Launch current file (in active editor window) under debugger", |
325 | 325 | "body": { |
326 | 326 | "name": "PowerShell Launch Current File", |
327 | | - "type": "powershell", |
| 327 | + "type": "PowerShell", |
328 | 328 | "request": "launch", |
329 | 329 | "script": "^\"\\${file}\"", |
330 | 330 | "args": [], |
|
336 | 336 | "description": "Launch current file (in active editor window) under debugger in a temporary Integrated Console.", |
337 | 337 | "body": { |
338 | 338 | "name": "PowerShell Launch Current File in Temporary Console", |
339 | | - "type": "powershell", |
| 339 | + "type": "PowerShell", |
340 | 340 | "request": "launch", |
341 | 341 | "script": "^\"\\${file}\"", |
342 | 342 | "args": [], |
|
349 | 349 | "description": "Launch current file (in active editor window) under debugger, prompting first for script arguments", |
350 | 350 | "body": { |
351 | 351 | "name": "PowerShell Launch Current File w/Args Prompt", |
352 | | - "type": "powershell", |
| 352 | + "type": "PowerShell", |
353 | 353 | "request": "launch", |
354 | 354 | "script": "^\"\\${file}\"", |
355 | 355 | "args": [ |
|
363 | 363 | "description": "Launch specified script or path to script under debugger", |
364 | 364 | "body": { |
365 | 365 | "name": "PowerShell Launch ${Script}", |
366 | | - "type": "powershell", |
| 366 | + "type": "PowerShell", |
367 | 367 | "request": "launch", |
368 | 368 | "script": "^\"\\${workspaceFolder}/${Script}\"", |
369 | 369 | "args": [], |
|
375 | 375 | "description": "Invokes Pester tests under debugger", |
376 | 376 | "body": { |
377 | 377 | "name": "PowerShell Pester Tests", |
378 | | - "type": "powershell", |
| 378 | + "type": "PowerShell", |
379 | 379 | "request": "launch", |
380 | 380 | "script": "Invoke-Pester", |
381 | 381 | "args": [], |
|
387 | 387 | "description": "Open host process picker to select process to attach debugger to", |
388 | 388 | "body": { |
389 | 389 | "name": "PowerShell Attach to Host Process", |
390 | | - "type": "powershell", |
| 390 | + "type": "PowerShell", |
391 | 391 | "request": "attach", |
392 | 392 | "processId": "^\"\\${command:PickPSHostProcess}\"", |
393 | 393 | "runspaceId": 1 |
|
398 | 398 | "description": "Start interactive session (Debug Console) under debugger", |
399 | 399 | "body": { |
400 | 400 | "name": "PowerShell Interactive Session", |
401 | | - "type": "powershell", |
| 401 | + "type": "PowerShell", |
402 | 402 | "request": "launch", |
403 | 403 | "cwd": "" |
404 | 404 | } |
|
0 commit comments