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
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -754,7 +754,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -791,7 +791,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -828,7 +828,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -964,7 +964,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -1004,7 +1004,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -1041,7 +1041,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -1078,7 +1078,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -1151,4 +1151,4 @@
}
]
}
}
}
4 changes: 2 additions & 2 deletions src/tools/OptionsSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -64,7 +64,7 @@
},
"pipeArgs": {
"type": "array",
"description": "Command line arguments passed to the pipe program.",
"description": "Command line arguments passed to the pipe program. Token ${debuggerCommand} in pipeArgs will get replaced by the full debugger command, this token can be specified inline with other arguments. If ${debuggerCommand} isn’t used in any argument, the full debugger command will be instead be added to the end of the argument list.",
"items": {
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion src/tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
OptionsSchema.json defines the type for Launch/Attach options.

# GenerateOptionsSchema
If there are any modifications to the OptionsSchema.json file. Please run `gulp updateOptionsSchema` at the repo root.
If there are any modifications to the OptionsSchema.json file. Please run `gulp generateOptionsSchema` at the repo root.
This will call GenerateOptionsSchema and update the package.json file.

**NOTE:** *Any manual changes to package.json's object.contributes.debuggers[0].configurationAttributes will be
Expand Down