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 9841240 commit c4da1ddCopy full SHA for c4da1dd
Rubberduck.Parsing/VBA/RubberduckParser.cs
@@ -393,6 +393,13 @@ private void SyncComReferences(IReadOnlyList<IVBProject> projects)
393
for (var priority = 1; priority <= references.Count; priority++)
394
{
395
var reference = references[priority];
396
+
397
+ // skip loading Rubberduck.tlb (GUID is defined in AssemblyInfo.cs)
398
+ if (reference.Guid == "{E07C841C-14B4-4890-83E9-8C80B06DD59D}")
399
+ {
400
+ // todo: figure out why Rubberduck.tlb can't be loaded that way
401
+ continue;
402
+ }
403
var referencedProjectId = GetReferenceProjectId(reference, projects);
404
405
ReferencePriorityMap map = null;
0 commit comments