Skip to content

Commit 2663aed

Browse files
committed
Addresses comments
1 parent db32e40 commit 2663aed

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ interface IArgvConfig {
369369
readonly 'disable-chromium-sandbox'?: boolean;
370370
readonly 'use-inmemory-secretstorage'?: boolean;
371371
readonly 'enable-rdp-display-tracking'?: boolean;
372+
readonly 'remote-debugging-port'?: string;
372373
}
373374

374375
function readArgvConfigSync(): IArgvConfig {

src/vs/workbench/electron-browser/desktop.contribution.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,10 @@ import { registerWorkbenchContribution2, WorkbenchPhase } from '../common/contri
440440
'use-inmemory-secretstorage': {
441441
type: 'boolean',
442442
description: localize('argv.useInMemorySecretStorage', "Ensures that an in-memory store will be used for secret storage instead of using the OS's credential store. This is often used when running VS Code extension tests or when you're experiencing difficulties with the credential store.")
443+
},
444+
'remote-debugging-port': {
445+
type: 'string',
446+
description: localize('argv.remoteDebuggingPort', "Specifies the port to use for remote debugging.")
443447
}
444448
}
445449
};

0 commit comments

Comments
 (0)