Add 'Open in VS Code' button with binlog analyzer extension#933
Merged
KirillOsenkov merged 6 commits intoKirillOsenkov:mainfrom Mar 9, 2026
Merged
Conversation
Contributor
Author
|
cc @JanKrivanek , @baronfel , @rainersigwald |
5e18300 to
418fc6e
Compare
Adds a toolbar button to launch VS Code with the MSBuild Binlog Analyzer extension (dotutils.binlog-analyzer) for Copilot-powered build analysis. Features: - 'Open in VS Code' button in toolbar with tip bar hint - Attach binlog button for multi-binlog comparison - Auto-installs extension from VS Code Marketplace if not present - Detects workspace folder from binlog project paths - Cross-machine binlog support (defers to VS Code extension) - Writes .vscode/settings.json and .vscode/mcp.json for MCP tools Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
418fc6e to
1c6c33d
Compare
Collaborator
|
@KirillOsenkov this is efectively superseding #912 |
Closed
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
| { | ||
| Process.Start(new ProcessStartInfo("https://github.com/JanKrivanek/MSBuildStructuredLog/releases") { UseShellExecute = true }); | ||
| vsCodeHintBar.Visibility = Visibility.Collapsed; | ||
| vsCodeHintDismissed = true; |
Owner
There was a problem hiding this comment.
we need to persist this in settings. We can't be showing this in every session again and again.
Owner
|
Don't forget to check the Dark Theme to see if the colors look OK. Could you include all screenshots of the new UI including the hint bar? |
Contributor
Author
d353eed to
429d33e
Compare
Restores the original SetProjectContext behavior: - contents ??= 'A project or evaluation must be selected.' fallback - projectContextBorder always Visibility.Visible - projectContextLabel.Visibility controlled by contents != null - Guard condition order matching main Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Reverts accidental modifications to existing code: - Restore DisplayTarget evaluation parameter and call sites - Restore EditorExtension unconditional creation with Evaluation property - Restore PreprocessContext != null check - Restore 'View project graph' button in folder children - Move ViewProperty and SearchForProperty back to original locations - Fix formatting (blank line, indentation) The diff is now purely additive — only new VS Code feature code. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
KirillOsenkov
approved these changes
Mar 9, 2026
Contributor
Author
|
@KirillOsenkov , thank you!!! |
Owner
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 an ✨ Open in VS Code toolbar button that launches VS Code with the MSBuild Binlog Analyzer extension for Copilot-powered build analysis.
How it works