We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb73ef commit 5f2d9b3Copy full SHA for 5f2d9b3
Rubberduck.Core/AddRemoveReferences/ReferenceModel.cs
@@ -183,7 +183,7 @@ public bool Matches(ReferenceInfo info)
183
FullPath.Equals(info.FullPath, StringComparison.OrdinalIgnoreCase) ||
184
FullPath32.Equals(info.FullPath, StringComparison.OrdinalIgnoreCase) ||
185
FullPath64.Equals(info.FullPath, StringComparison.OrdinalIgnoreCase) ||
186
- Guid.Equals(info.Guid);
+ !Guid.Equals(Guid.Empty) && Guid.Equals(info.Guid);
187
}
188
189
private void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
0 commit comments