File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -193,8 +193,11 @@ export class BaseVsDbgConfigurationProvider implements vscode.DebugConfiguration
193
193
194
194
for ( const key of keys ) {
195
195
// Skip since option is set in the launch.json configuration
196
- // Skip 'console' option since this should be set when we know this is a console project.
197
- if ( Object . prototype . hasOwnProperty . call ( debugConfiguration , key ) || key === 'console' ) {
196
+ if (
197
+ Object . prototype . hasOwnProperty . call ( debugConfiguration , key ) ||
198
+ key === 'console' || // Skip 'console' option since this should be set when we know this is a console project.
199
+ key == 'debugConsoleVerbosity' // Skip 'debugConsoleVerbosity' since this is a C# Dev Kit option
200
+ ) {
198
201
continue ;
199
202
}
200
203
You can’t perform that action at this time.
0 commit comments