Uh oh!
There was an error while loading. Please reload this page.
Fix NRE in ToolConfigurationDeserializer when RuntimeIdentifierPackages is null - #53369
Merged
marcpopMSFT merged 1 commit intoApr 17, 2026
Merged
Conversation
CopilotAI
changed the title
[WIP] Fix null reference exception in ToolConfigurationDeserializerFix NRE in ToolConfigurationDeserializer when RuntimeIdentifierPackages is nullMar 10, 2026
marcpopMSFT
approved these changes
Mar 16, 2026
marcpopMSFT
commented
Mar 16, 2026
Member
Code looks right. It should catch the null ref and provide this error now: "Tool '{0}' uses unsupported runner '{1}'." |
Contributor
There was a problem hiding this comment.
Pull request overview
Fixes a crash in the .NET tool settings XML deserialization path when <RuntimeIdentifierPackages> is omitted and the tool command’s Runner is empty, ensuring a ToolConfigurationException is thrown instead of a NullReferenceException.
Changes:
- Add a null-safe guard around the RID-specific packages
.Any()check whenRunneris empty.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
dsplaisted
approved these changes
Apr 7, 2026
marcpopMSFTforce-pushed
the
copilot/add-null-check-in-tool-config
branch
from
April 10, 2026 18:06
f985889 to
e92386eComparemarcpopMSFT
enabled auto-merge
April 10, 2026 18:07
3 tasks
…null Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com>
marcpopMSFTforce-pushed
the
copilot/add-null-check-in-tool-config
branch
from
April 17, 2026 18:25
e92386e to
b055eddCompareUh oh!
There was an error while loading. Please reload this page.
This was referenced Apr 17, 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 freeto 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.
When a tool's settings XML omits the
<RuntimeIdentifierPackages>element,ridSpecificPackagesisnull(via?.ToDictionary(...)), causing an unhandledNullReferenceExceptionon the subsequent.Any()call rather than a clean error message.Changes
ToolConfigurationDeserializer.cs: Guard.Any()call with an explicit null check onridSpecificPackages:Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.