|
185 | 185 | "startSessionCommand": "PowerShell.StartDebugSession", |
186 | 186 | "configurationSnippets": [ |
187 | 187 | { |
188 | | - "label": "PowerShell: Launch - Current File", |
| 188 | + "label": "PowerShell: Launch Current File", |
189 | 189 | "description": "Launch current file (in active editor window) under debugger", |
190 | 190 | "body": { |
191 | 191 | "type": "PowerShell", |
192 | 192 | "request": "launch", |
193 | | - "name": "PS Launch - Current File", |
| 193 | + "name": "PowerShell Launch Current File", |
194 | 194 | "script": "^\"\\${file}\"", |
195 | 195 | "args": [], |
196 | 196 | "cwd": "^\"\\${file}\"" |
|
202 | 202 | "body": { |
203 | 203 | "type": "PowerShell", |
204 | 204 | "request": "launch", |
205 | | - "name": "PS Launch - Current File w/Args Prompt", |
| 205 | + "name": "PowerShell Launch Current File w/Args Prompt", |
206 | 206 | "script": "^\"\\${file}\"", |
207 | 207 | "args": [], |
208 | 208 | "cwd": "^\"\\${file}\"" |
|
214 | 214 | "body": { |
215 | 215 | "type": "PowerShell", |
216 | 216 | "request": "launch", |
217 | | - "name": "PS Launch - ${Script}", |
| 217 | + "name": "PowerShell Launch ${Script}", |
218 | 218 | "script": "^\"\\${workspaceRoot}/${Script}\"", |
219 | 219 | "args": [], |
220 | 220 | "cwd": "^\"\\${workspaceRoot}\"" |
|
226 | 226 | "body": { |
227 | 227 | "type": "PowerShell", |
228 | 228 | "request": "launch", |
229 | | - "name": "PS Pester Tests", |
| 229 | + "name": "PowerShell Pester Tests", |
230 | 230 | "script": "Invoke-Pester", |
231 | 231 | "args": [], |
232 | 232 | "cwd": "^\"\\${workspaceRoot}\"" |
|
238 | 238 | "body": { |
239 | 239 | "type": "PowerShell", |
240 | 240 | "request": "attach", |
241 | | - "name": "PS Attach to Host Process", |
| 241 | + "name": "PowerShell Attach to Host Process", |
242 | 242 | "processId": "^\"\\${command:PickPSHostProcess}\"", |
243 | 243 | "runspaceId": 1 |
244 | 244 | } |
|
249 | 249 | "body": { |
250 | 250 | "type": "PowerShell", |
251 | 251 | "request": "launch", |
252 | | - "name": "PS Interactive Session", |
| 252 | + "name": "PowerShell Interactive Session", |
253 | 253 | "cwd": "^\"\\${workspaceRoot}\"" |
254 | 254 | } |
255 | 255 | } |
|
303 | 303 | { |
304 | 304 | "type": "PowerShell", |
305 | 305 | "request": "launch", |
306 | | - "name": "PS Launch - Current File", |
| 306 | + "name": "PowerShell Launch Current File", |
307 | 307 | "script": "${file}", |
308 | 308 | "args": [], |
309 | 309 | "cwd": "${file}" |
310 | 310 | }, |
311 | 311 | { |
312 | 312 | "type": "PowerShell", |
313 | 313 | "request": "launch", |
314 | | - "name": "PS Launch - Current File w/Args Prompt", |
| 314 | + "name": "PowerShell Launch Current File w/Args Prompt", |
315 | 315 | "script": "${file}", |
316 | 316 | "args": [ "${command:SpecifyScriptArgs}" ], |
317 | 317 | "cwd": "${file}" |
318 | 318 | }, |
319 | 319 | { |
320 | 320 | "type": "PowerShell", |
321 | 321 | "request": "attach", |
322 | | - "name": "PS Attach to Host Process", |
| 322 | + "name": "PowerShell Attach to Host Process", |
323 | 323 | "processId": "${command:PickPSHostProcess}", |
324 | 324 | "runspaceId": 1 |
325 | 325 | }, |
326 | 326 | { |
327 | 327 | "type": "PowerShell", |
328 | 328 | "request": "launch", |
329 | | - "name": "PS Interactive Session", |
| 329 | + "name": "PowerShell Interactive Session", |
330 | 330 | "cwd": "${workspaceRoot}" |
331 | 331 | } |
332 | 332 | ] |
|
0 commit comments