File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -360,10 +360,9 @@ export class DebugConfigurationProvider implements vscode.DebugConfigurationProv
360360 if ( config . program ) {
361361 processId = await this . findProcessByProgramName ( config . program , config , token ) ;
362362 }
363-
363+
364364 // Fall back to process picker if program wasn't specified or didn't match
365365 if ( ! processId ) {
366- // Show the process picker if no program is specified
367366 if ( config . pipeTransport || config . useExtendedRemote ) {
368367 const remoteAttachPicker : RemoteAttachPicker = new RemoteAttachPicker ( ) ;
369368 processId = await remoteAttachPicker . ShowAttachEntries ( config ) ;
@@ -1185,7 +1184,7 @@ export class DebugConfigurationProvider implements vscode.DebugConfigurationProv
11851184 }
11861185
11871186 const programBaseName : string = path . basename ( programPath ) ;
1188-
1187+
11891188 // Get the process list using the same logic as interactive attach
11901189 const attachItemsProvider : AttachItemsProvider = NativeAttachItemsProviderFactory . Get ( ) ;
11911190 const processes : AttachItem [ ] = await attachItemsProvider . getAttachItems ( token ) ;
You can’t perform that action at this time.
0 commit comments