Skip to content

Commit 2b97f5a

Browse files
rkeithhilldaviwil
authored andcommitted
Change PS back to PowerShell in dbg configs.
1 parent 29a169b commit 2b97f5a

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

examples/.vscode/launch.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,45 +4,45 @@
44
{
55
"type": "PowerShell",
66
"request": "launch",
7-
"name": "PS Launch - Current File",
7+
"name": "PowerShell Launch Current File",
88
"script": "${file}",
99
"args": [],
1010
"cwd": "${file}"
1111
},
1212
{
1313
"type": "PowerShell",
1414
"request": "launch",
15-
"name": "PS Launch - Current File w/Args Prompt",
15+
"name": "PowerShell Launch Current File w/Args Prompt",
1616
"script": "${file}",
1717
"args": [ "${command:SpecifyScriptArgs}" ],
1818
"cwd": "${file}"
1919
},
2020
{
2121
"type": "PowerShell",
2222
"request": "launch",
23-
"name": "PS Launch - DebugTest.ps1",
23+
"name": "PowerShell Launch DebugTest.ps1",
2424
"script": "${workspaceRoot}/DebugTest.ps1",
2525
"args": ["-Count 55 -DelayMilliseconds 250"],
2626
"cwd": "${workspaceRoot}"
2727
},
2828
{
2929
"type": "PowerShell",
3030
"request": "launch",
31-
"name": "PS Interactive Session",
31+
"name": "PowerShell Interactive Session",
3232
"cwd": "${workspaceRoot}"
3333
},
3434
{
3535
"type": "PowerShell",
3636
"request": "launch",
37-
"name": "PS Pester Tests",
37+
"name": "PowerShell Pester Tests",
3838
"script": "Invoke-Pester",
3939
"args": [],
4040
"cwd": "${workspaceRoot}"
4141
},
4242
{
4343
"type": "PowerShell",
4444
"request": "attach",
45-
"name": "PS Attach to Host Process",
45+
"name": "PowerShell Attach to Host Process",
4646
"processId": "${command:PickPSHostProcess}",
4747
"runspaceId": 1
4848
}

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,12 @@
185185
"startSessionCommand": "PowerShell.StartDebugSession",
186186
"configurationSnippets": [
187187
{
188-
"label": "PowerShell: Launch - Current File",
188+
"label": "PowerShell: Launch Current File",
189189
"description": "Launch current file (in active editor window) under debugger",
190190
"body": {
191191
"type": "PowerShell",
192192
"request": "launch",
193-
"name": "PS Launch - Current File",
193+
"name": "PowerShell Launch Current File",
194194
"script": "^\"\\${file}\"",
195195
"args": [],
196196
"cwd": "^\"\\${file}\""
@@ -202,7 +202,7 @@
202202
"body": {
203203
"type": "PowerShell",
204204
"request": "launch",
205-
"name": "PS Launch - Current File w/Args Prompt",
205+
"name": "PowerShell Launch Current File w/Args Prompt",
206206
"script": "^\"\\${file}\"",
207207
"args": [],
208208
"cwd": "^\"\\${file}\""
@@ -214,7 +214,7 @@
214214
"body": {
215215
"type": "PowerShell",
216216
"request": "launch",
217-
"name": "PS Launch - ${Script}",
217+
"name": "PowerShell Launch ${Script}",
218218
"script": "^\"\\${workspaceRoot}/${Script}\"",
219219
"args": [],
220220
"cwd": "^\"\\${workspaceRoot}\""
@@ -226,7 +226,7 @@
226226
"body": {
227227
"type": "PowerShell",
228228
"request": "launch",
229-
"name": "PS Pester Tests",
229+
"name": "PowerShell Pester Tests",
230230
"script": "Invoke-Pester",
231231
"args": [],
232232
"cwd": "^\"\\${workspaceRoot}\""
@@ -238,7 +238,7 @@
238238
"body": {
239239
"type": "PowerShell",
240240
"request": "attach",
241-
"name": "PS Attach to Host Process",
241+
"name": "PowerShell Attach to Host Process",
242242
"processId": "^\"\\${command:PickPSHostProcess}\"",
243243
"runspaceId": 1
244244
}
@@ -249,7 +249,7 @@
249249
"body": {
250250
"type": "PowerShell",
251251
"request": "launch",
252-
"name": "PS Interactive Session",
252+
"name": "PowerShell Interactive Session",
253253
"cwd": "^\"\\${workspaceRoot}\""
254254
}
255255
}
@@ -303,30 +303,30 @@
303303
{
304304
"type": "PowerShell",
305305
"request": "launch",
306-
"name": "PS Launch - Current File",
306+
"name": "PowerShell Launch Current File",
307307
"script": "${file}",
308308
"args": [],
309309
"cwd": "${file}"
310310
},
311311
{
312312
"type": "PowerShell",
313313
"request": "launch",
314-
"name": "PS Launch - Current File w/Args Prompt",
314+
"name": "PowerShell Launch Current File w/Args Prompt",
315315
"script": "${file}",
316316
"args": [ "${command:SpecifyScriptArgs}" ],
317317
"cwd": "${file}"
318318
},
319319
{
320320
"type": "PowerShell",
321321
"request": "attach",
322-
"name": "PS Attach to Host Process",
322+
"name": "PowerShell Attach to Host Process",
323323
"processId": "${command:PickPSHostProcess}",
324324
"runspaceId": 1
325325
},
326326
{
327327
"type": "PowerShell",
328328
"request": "launch",
329-
"name": "PS Interactive Session",
329+
"name": "PowerShell Interactive Session",
330330
"cwd": "${workspaceRoot}"
331331
}
332332
]

0 commit comments

Comments
 (0)