Merge 'main' into 'release/cpptools'#1553
Merged
WardenGnaw merged 10 commits intorelease-cpptoolsfrom Apr 2, 2026
Merged
Conversation
Disable SBOM for non-folder publish and other warnings This PR disables SBOM for non-folder publishes because the build will get a warning saying: "BuildDropPath '<FILE PATH>' must be a directory, not a file" Disabling SBOM checks where we know we are only publishing a file. Changing ExpirationInDays to be 5475
* Update BasicCallStack Test Frame lines This PR updates checkCallStack line 81 to 80 which matches what the cpp file has. Same with callback func * x86 and x64 should be the same now
* Refactor DebuggerTesting pipeline for 1ES Compliance * Add comment
Use Test Sign for Testing packages
* Remove branch trigger and CI check for releases * Trigger: none
This PR fixes the issue of how natvis matches which multi-templated arguments. E.g. <*> would be selected over <*, *, *>. This now will pick the first highest templated argument count, but also FindBestMatch to prefer concrete template args over wildcards at the same arg count. E.g. If you had natvis for <*, *> and are visualizing <*, *, *, *> you will get the <*, *> view. There was also an issue with expression substitution to skip identifiers preceded by member-access operators (., ->, ::) so that sub-expressions like "ptr->member" are not incorrectly replaced with root-level lookups Added tests.
This PR addresses the issue of pointers to null being expandable. Added a check to see if something is a null pointer if its a pointer type and has the value of 0. Added a test. Addresses #698
This PR enables the xml field HideRawView on expand to hide the '[Raw View]' node. Added tests. Addresses #1458
This PR addresses the issue where using `this` in natvis causes it to recursively evaluate. Added a check during evaluation if the name is this, special case to just return as is instead of contuining recursing. Added tests to handle the case. Addresses #1391
* Fix leaking ssh connections with VS Attach to Process This PR address the issue where every SSH PortSupplier AD7Port will always create a new SSH connection on the remote machine when the Attach to Process window opens and closes. This causes ports to be kept open until VS completly closes. The changes here are to cache an existing connection if VS opens and closes the attach to process window. Adds a ref count mechanism to ensure if you are debugging multiple processes on the same machine, it does not Clean the connection until all processes are done.
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.
No description provided.