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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

export const EXTENSION_DISPLAY_NAME: string = 'Debug Certificate Manager';

export const EXTENSION_ID: string = 'RushStack.debug-certificate-manager';
export const EXTENSION_ID: string = '@ext:ms-RushStack.debug-certificate-manager';

export const COMMAND_PREFIX: string = 'debugCertificateManager';
export const COMMAND_SYNC: string = `${COMMAND_PREFIX}.sync`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export function activate(context: vscode.ExtensionContext): void {
}

async function handleShowSettings(): Promise<void> {
await vscode.commands.executeCommand(VSCODE_COMMAND_WORKSPACE_OPEN_SETTINGS, `@ext:${EXTENSION_ID}`);
await vscode.commands.executeCommand(VSCODE_COMMAND_WORKSPACE_OPEN_SETTINGS, EXTENSION_ID);
}

async function handleSync(): Promise<void> {
Expand Down