Fix NRE in ToolConfigurationDeserializer when RuntimeIdentifierPackages is null#53369
Merged
marcpopMSFT merged 1 commit intorelease/10.0.3xxfrom Apr 17, 2026
Merged
Conversation
Copilot
AI
changed the title
[WIP] Fix null reference exception in ToolConfigurationDeserializer
Fix NRE in ToolConfigurationDeserializer when RuntimeIdentifierPackages is null
Mar 10, 2026
marcpopMSFT
approved these changes
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.
dsplaisted
approved these changes
Apr 7, 2026
f985889 to
e92386e
Compare
3 tasks
…null Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com>
e92386e to
b055edd
Compare
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 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.
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.