|
118 | 118 | "powershell"
|
119 | 119 | ]
|
120 | 120 | },
|
121 |
| - "windows": { |
122 |
| - "program": "bin/Microsoft.PowerShell.EditorServices.Host.exe" |
123 |
| - }, |
124 |
| - "winx86": { |
125 |
| - "program": "bin/Microsoft.PowerShell.EditorServices.Host.x86.exe" |
126 |
| - }, |
127 |
| - "args": [ |
128 |
| - "/debugAdapter", |
129 |
| - "/logLevel:Verbose", |
130 |
| - "/hostName:\"Visual Studio Code Host\"", |
131 |
| - "/hostProfileId:Microsoft.VSCode", |
132 |
| - "/hostVersion:0.6.1" |
133 |
| - ], |
| 121 | + "program": "./out/debugAdapter.js", |
| 122 | + "runtime": "node", |
134 | 123 | "configurationAttributes": {
|
135 | 124 | "launch": {
|
136 | 125 | "required": [
|
|
165 | 154 | "program": "${file}",
|
166 | 155 | "args": [],
|
167 | 156 | "cwd": "${file}"
|
168 |
| - }, |
169 |
| - { |
170 |
| - "name": "PowerShell x86", |
171 |
| - "type": "PowerShell x86", |
172 |
| - "request": "launch", |
173 |
| - "program": "${file}", |
174 |
| - "args": [], |
175 |
| - "cwd": "${file}" |
176 |
| - } |
177 |
| - ] |
178 |
| - }, |
179 |
| - { |
180 |
| - "type": "PowerShell x86", |
181 |
| - "enableBreakpointsFor": { |
182 |
| - "languageIds": [ |
183 |
| - "powershell" |
184 |
| - ] |
185 |
| - }, |
186 |
| - "windows": { |
187 |
| - "program": "bin/Microsoft.PowerShell.EditorServices.Host.x86.exe" |
188 |
| - }, |
189 |
| - "args": [ |
190 |
| - "/debugAdapter", |
191 |
| - "/logLevel:Verbose", |
192 |
| - "/hostName:\"Visual Studio Code Host\"", |
193 |
| - "/hostProfileId:Microsoft.VSCode", |
194 |
| - "/hostVersion:0.6.1" |
195 |
| - ], |
196 |
| - "configurationAttributes": { |
197 |
| - "launch": { |
198 |
| - "required": [ |
199 |
| - "program" |
200 |
| - ], |
201 |
| - "properties": { |
202 |
| - "program": { |
203 |
| - "type": "string", |
204 |
| - "description": "Absolute path to the PowerShell script to launch under the debugger." |
205 |
| - }, |
206 |
| - "args": { |
207 |
| - "type": "array", |
208 |
| - "description": "Command line arguments to pass to the PowerShell script.", |
209 |
| - "items": { |
210 |
| - "type": "string" |
211 |
| - }, |
212 |
| - "default": [] |
213 |
| - }, |
214 |
| - "cwd": { |
215 |
| - "type": "string", |
216 |
| - "description": "Absolute path to the working directory. Default is the current workspace.", |
217 |
| - "default": "." |
218 |
| - } |
219 |
| - } |
220 |
| - } |
221 |
| - }, |
222 |
| - "initialConfigurations": [ |
223 |
| - { |
224 |
| - "name": "PowerShell x86", |
225 |
| - "type": "PowerShell x86", |
226 |
| - "request": "launch", |
227 |
| - "program": "${file}", |
228 |
| - "args": [], |
229 |
| - "cwd": "${file}" |
230 | 157 | }
|
231 | 158 | ]
|
232 | 159 | }
|
|
255 | 182 | "default": "",
|
256 | 183 | "description": "Specifies the path to a PowerShell Script Analyzer settings file. Use either an absolute path (to override the default settings for all projects) or use a path relative to your workspace."
|
257 | 184 | },
|
258 |
| - "powershell.developer.editorServicesHostPath": { |
| 185 | + "powershell.developer.bundledModulesPath": { |
259 | 186 | "type": "string",
|
260 |
| - "default": "../bin/", |
261 |
| - "description": "Specifies the path to the folder containing the PowerShell Editor Services host executables." |
| 187 | + "default": "../modules/", |
| 188 | + "description": "Specifies the path to the folder containing modules that are bundled with the PowerShell extension (i.e. PowerShell Editor Services, PowerShell Script Analyzer, Plaster)" |
262 | 189 | },
|
263 | 190 | "powershell.developer.editorServicesLogLevel": {
|
264 | 191 | "type": "string",
|
|
0 commit comments