Skip to content

Commit 466c020

Browse files
committed
Merge pull request #82 from rkeithhill/rkeithhill/is96-launch-x86orx64-debugger
Addresses issue #55 for 0.4.0 release to select debug host bitness.
2 parents 2afa591 + 19e7558 commit 466c020

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

package.json

+30
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,36 @@
134134
"program": "${file}"
135135
}
136136
]
137+
},
138+
{
139+
"type": "PowerShell x86",
140+
"enableBreakpointsFor": {
141+
"languageIds": [
142+
"powershell"
143+
]
144+
},
145+
"program": "bin/Microsoft.PowerShell.EditorServices.Host.DebugAdapter.x86.cmd",
146+
"configurationAttributes": {
147+
"launch": {
148+
"required": [
149+
"program"
150+
],
151+
"properties": {
152+
"program": {
153+
"type": "string",
154+
"description": "Workspace relative path to the PowerShell script."
155+
}
156+
}
157+
}
158+
},
159+
"initialConfigurations": [
160+
{
161+
"name": "PowerShell x86",
162+
"type": "PowerShell x86",
163+
"request": "launch",
164+
"program": "${file}"
165+
}
166+
]
137167
}
138168
],
139169
"configuration": {

0 commit comments

Comments
 (0)