Skip to content

Commit fdb5806

Browse files
Rename 'clrdbg' to 'vsdbg' in the schema (#1300)
The schema still referred to clrdbg. This fixes it.
1 parent 92daa3f commit fdb5806

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@
684684
}
685685
},
686686
"pipeTransport": {
687-
"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).",
687+
"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).",
688688
"type": "object",
689689
"required": [
690690
"debuggerPath"
@@ -693,7 +693,7 @@
693693
"pipeCwd": "${workspaceRoot}",
694694
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
695695
"pipeArgs": [],
696-
"debuggerPath": "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
696+
"debuggerPath": "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
697697
},
698698
"properties": {
699699
"pipeCwd": {
@@ -717,7 +717,7 @@
717717
"debuggerPath": {
718718
"type": "string",
719719
"description": "The full path to the debugger on the target machine.",
720-
"default": "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
720+
"default": "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
721721
},
722722
"pipeEnv": {
723723
"type": "object",
@@ -932,7 +932,7 @@
932932
}
933933
},
934934
"pipeTransport": {
935-
"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).",
935+
"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).",
936936
"type": "object",
937937
"required": [
938938
"debuggerPath"
@@ -941,7 +941,7 @@
941941
"pipeCwd": "${workspaceRoot}",
942942
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
943943
"pipeArgs": [],
944-
"debuggerPath": "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
944+
"debuggerPath": "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
945945
},
946946
"properties": {
947947
"pipeCwd": {
@@ -965,7 +965,7 @@
965965
"debuggerPath": {
966966
"type": "string",
967967
"description": "The full path to the debugger on the target machine.",
968-
"default": "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
968+
"default": "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
969969
},
970970
"pipeEnv": {
971971
"type": "object",

src/tools/OptionsSchema.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@
4545
"PipeTransport": {
4646
"type": "object",
4747
"required": ["debuggerPath"],
48-
"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).",
48+
"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).",
4949
"default": {
5050
"pipeCwd": "${workspaceRoot}",
5151
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
5252
"pipeArgs": [],
53-
"debuggerPath" : "enter the path for the debugger on the target machine, for example ~/clrdbg/clrdbg"
53+
"debuggerPath" : "enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg"
5454
},
5555
"properties": {
5656
"pipeCwd": {
@@ -74,7 +74,7 @@
7474
"debuggerPath" : {
7575
"type" : "string",
7676
"description" : "The full path to the debugger on the target machine.",
77-
"default" : "~/clrdbg/clrdbg"
77+
"default" : "~/vsdbg/vsdbg"
7878
},
7979
"pipeEnv": {
8080
"type": "object",
@@ -324,7 +324,7 @@
324324
},
325325
"pipeTransport": {
326326
"$ref": "#/definitions/PipeTransport",
327-
"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)."
327+
"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)."
328328
}
329329
}
330330
},
@@ -390,7 +390,7 @@
390390
},
391391
"pipeTransport": {
392392
"$ref": "#/definitions/PipeTransport",
393-
"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)."
393+
"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)."
394394
}
395395
}
396396
}

0 commit comments

Comments
 (0)