-
Notifications
You must be signed in to change notification settings - Fork 664
fixed the show settings for debg cert manager #5493
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@yashwanth195 for pull requests if you have an issue that this PR fixes add in the description
GitHub will then link the issue and close it when the PR is merged. |
|
Fixes issue #5491. |
|
@microsoft-github-policy-service agree company="Microsoft" |
vscode-extensions/debug-certificate-manager-vscode-extension/src/extension.ts
Outdated
Show resolved
Hide resolved
…rc/extension.ts Correct expression Co-authored-by: David Michon <dmichon@microsoft.com>
| 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'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: @ext is a setting prefix to look for extension id and not part of the extension id itself. consider renaming the const to SETTINGS_EXTENSION_ID_FILTER or keep the string concatenation in extention.ts
Also, See if you can source this info from the extension manifest to avoid future issues like this. We can also start using that pattern for other vscode extensions here.
import packageJson from '../package.json';
// ....
export const EXTENSION_ID: string = `${packageJson.publisher}.${packageJson.name}`There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or something like
import packageJson from '../package.json';
// ....
export const EXTENSION_ID: string = `${packageJson.publisher}.${packageJson.name}`;
export const VSCODE_SETTINGS_EXTENSION_ID_FILTER = `@ext:${EXTENSION_ID}`;
"[ts-command-line] Add support for numeric command line parameters"
Fixes issue #5491
Details
Changed initialized constant reflecting the correct path.