[debug-certificate-manager] add homeDirectory config#5809
Merged
Conversation
Adds a new extension setting that, when set, is used as the resolved home directory for expanding `~` in the workspace certificate store path, overriding both the local `os.homedir()` lookup and the terminal-based resolution used in remote workspaces. Recommended to be configured at the user level rather than per-workspace. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
dmichon-msft
approved these changes
May 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new
debugCertificateManager.homeDirectorysetting to the Debug Certificate Manager VS Code extension. When set, this value is used to resolve a leading~in the workspace certificate store path, overriding both the localos.homedir()lookup and the terminal-based resolution used in remote workspaces.This gives users a deterministic way to point the extension at the correct home directory in environments where the previous resolution mechanisms are unreliable.
Details
debugCertificateManager.homeDirectory.~in the workspace store path:homeDirectorysetting, if configured.vscode.env.remoteNameis set.os.homedir()(existing behavior) otherwise.How it was tested
Manually:
rush build --to debug-certificate-manager.~expansion in the workspace store path uses the configured value directly without invoking the workspace terminal.Impacted documentation
None. Setting is self-describing via its
descriptioninpackage.json.