Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@
}
},
"pipeTransport": {
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (clrdbg).",
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (vsdbg).",
"type": "object",
"required": [
"debuggerPath"
Expand All @@ -714,7 +714,7 @@
"pipeCwd": "${workspaceRoot}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
"pipeArgs": [],
"debuggerPath": "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
"debuggerPath": "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
},
"properties": {
"pipeCwd": {
Expand All @@ -738,7 +738,7 @@
"debuggerPath": {
"type": "string",
"description": "The full path to the debugger on the target machine.",
"default": "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
"default": "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
},
"pipeEnv": {
"type": "object",
Expand Down Expand Up @@ -953,7 +953,7 @@
}
},
"pipeTransport": {
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (clrdbg).",
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (vsdbg).",
"type": "object",
"required": [
"debuggerPath"
Expand All @@ -962,7 +962,7 @@
"pipeCwd": "${workspaceRoot}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
"pipeArgs": [],
"debuggerPath": "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
"debuggerPath": "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
},
"properties": {
"pipeCwd": {
Expand All @@ -986,7 +986,7 @@
"debuggerPath": {
"type": "string",
"description": "The full path to the debugger on the target machine.",
"default": "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
"default": "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
},
"pipeEnv": {
"type": "object",
Expand Down
10 changes: 5 additions & 5 deletions src/tools/OptionsSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@
"PipeTransport": {
"type": "object",
"required": ["debuggerPath"],
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (clrdbg).",
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (vsdbg).",
"default": {
"pipeCwd": "${workspaceRoot}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
"pipeArgs": [],
"debuggerPath" : "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
"debuggerPath" : "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
},
"properties": {
"pipeCwd": {
Expand All @@ -74,7 +74,7 @@
"debuggerPath" : {
"type" : "string",
"description" : "The full path to the debugger on the target machine.",
"default" : "~/clrdbg/clrdbg"
"default" : "~/vsdbg/vsdbg"
},
"pipeEnv": {
"type": "object",
Expand Down Expand Up @@ -324,7 +324,7 @@
},
"pipeTransport": {
"$ref": "#/definitions/PipeTransport",
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (clrdbg)."
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (vsdbg)."
}
}
},
Expand Down Expand Up @@ -390,7 +390,7 @@
},
"pipeTransport": {
"$ref": "#/definitions/PipeTransport",
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (clrdbg)."
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (vsdbg)."
}
}
}
Expand Down