Skip to content

Commit b727954

Browse files
granitrockygranitrocky
authored andcommitted
Disable "debuggerPath" as required
1 parent 490a6a1 commit b727954

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

package.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2306,9 +2306,6 @@
23062306
"pipeTransport": {
23072307
"description": "%generateOptionsSchema.pipeTransport.description%",
23082308
"type": "object",
2309-
"required": [
2310-
"debuggerPath"
2311-
],
23122309
"default": {
23132310
"pipeCwd": "${workspaceFolder}",
23142311
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
@@ -2838,9 +2835,6 @@
28382835
"pipeTransport": {
28392836
"description": "%generateOptionsSchema.pipeTransport.description%",
28402837
"type": "object",
2841-
"required": [
2842-
"debuggerPath"
2843-
],
28442838
"default": {
28452839
"pipeCwd": "${workspaceFolder}",
28462840
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
@@ -3646,9 +3640,6 @@
36463640
"pipeTransport": {
36473641
"description": "%generateOptionsSchema.pipeTransport.description%",
36483642
"type": "object",
3649-
"required": [
3650-
"debuggerPath"
3651-
],
36523643
"default": {
36533644
"pipeCwd": "${workspaceFolder}",
36543645
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
@@ -4178,9 +4169,6 @@
41784169
"pipeTransport": {
41794170
"description": "%generateOptionsSchema.pipeTransport.description%",
41804171
"type": "object",
4181-
"required": [
4182-
"debuggerPath"
4183-
],
41844172
"default": {
41854173
"pipeCwd": "${workspaceFolder}",
41864174
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",

src/coreclrDebug/activate.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,8 @@ export class DebugAdapterExecutableFactory implements vscode.DebugAdapterDescrip
314314
}
315315
if (pipeTransport.debuggerArgs) {
316316
args = pipeTransport.debuggerArgs;
317+
} else {
318+
args.push('--interpreter=vscode', '--');
317319
}
318320
if (pipeTransport.pipeProgram) {
319321
args.push(pipeTransport.pipeProgram);

0 commit comments

Comments
 (0)