You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: nls.localize('debugName',"Name of configuration; appears in the launch configuration dropdown menu."),
102
+
default: 'Launch'
103
+
},
104
+
'debugServer': {
105
+
type: 'number',
106
+
description: nls.localize('debugServer',"For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode"),
107
+
default: 4711
108
+
},
109
+
'preLaunchTask': {
110
+
anyOf: [taskSchema,{
111
+
type: ['string']
112
+
}],
113
+
default: '',
114
+
defaultSnippets: [{body: {task: '',type: ''}}],
115
+
description: nls.localize('debugPrelaunchTask',"Task to run before debug session starts.")
116
+
},
117
+
'postDebugTask': {
118
+
anyOf: [taskSchema,{
119
+
type: ['string'],
120
+
}],
121
+
default: '',
122
+
defaultSnippets: [{body: {task: '',type: ''}}],
123
+
description: nls.localize('debugPostDebugTask',"Task to run after debug session ends.")
@@ -219,64 +216,44 @@ export class Debugger implements IDebugger {
219
216
errorMessage: nls.localize('debugTypeNotRecognised',"The debug type is not recognized. Make sure that you have a corresponding debug extension installed and that it is enabled."),
220
217
patternErrorMessage: nls.localize('node2NotSupported',"\"node2\" is no longer supported, use \"node\" instead and set the \"protocol\" attribute to \"inspector\".")
221
218
};
222
-
properties['name']={
223
-
type: 'string',
224
-
description: nls.localize('debugName',"Name of configuration; appears in the launch configuration dropdown menu."),
225
-
default: 'Launch'
226
-
};
227
219
properties['request']={
228
220
enum: [request],
229
221
description: nls.localize('debugRequest',"Request type of configuration. Can be \"launch\" or \"attach\"."),
230
222
};
231
-
properties['debugServer']={
232
-
type: 'number',
233
-
description: nls.localize('debugServer',"For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode"),
234
-
default: 4711
235
-
};
236
-
properties['preLaunchTask']={
237
-
anyOf: [taskSchema,{
238
-
type: ['string']
239
-
}],
240
-
default: '',
241
-
defaultSnippets: [{body: {task: '',type: ''}}],
242
-
description: nls.localize('debugPrelaunchTask',"Task to run before debug session starts.")
243
-
};
244
-
properties['postDebugTask']={
245
-
anyOf: [taskSchema,{
246
-
type: ['string'],
247
-
}],
248
-
default: '',
249
-
defaultSnippets: [{body: {task: '',type: ''}}],
250
-
description: nls.localize('debugPostDebugTask',"Task to run after debug session ends.")
0 commit comments