Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix duplicate reference issue (#73193)
If you have two references that are idetentical, except for casing then when we insert that value into the Hashset that comparison is not done ignoring case. And since the Dictionary comparison does, this causes multiple references that are otherwise identical to be inserted. This fix just adds the `OrdinalIgnoreCase` comparer to the `HashSet`
- Loading branch information