Skip to content

Commit

Permalink
fix initial launch config casing (PowerShell#1781)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt committed Mar 13, 2019
1 parent e1a8ca8 commit eaa730e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -453,15 +453,15 @@
"initialConfigurations": [
{
"name": "PowerShell Launch Current File",
"type": "powershell",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [],
"cwd": "${file}"
},
{
"name": "PowerShell Launch Current File in Temporary Console",
"type": "powershell",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [],
Expand All @@ -470,7 +470,7 @@
},
{
"name": "PowerShell Launch Current File w/Args Prompt",
"type": "powershell",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [
Expand All @@ -480,14 +480,14 @@
},
{
"name": "PowerShell Attach to Host Process",
"type": "powershell",
"type": "PowerShell",
"request": "attach",
"processId": "${command:PickPSHostProcess}",
"runspaceId": 1
},
{
"name": "PowerShell Interactive Session",
"type": "powershell",
"type": "PowerShell",
"request": "launch",
"cwd": ""
}
Expand Down

0 comments on commit eaa730e

Please sign in to comment.