Skip to content

Commit acf4f2f

Browse files
committed
Make projectIds for referenced libraries distinct from those for user projects.
1 parent 2d11cb0 commit acf4f2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.VBEEditor/QualifiedModuleName.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public QualifiedModuleName(string projectName, string projectPath, string compon
9393
{
9494
_projectName = projectName;
9595
ProjectPath = projectPath;
96-
ProjectId = $"{_projectName};{ProjectPath}".GetHashCode().ToString(CultureInfo.InvariantCulture);
96+
ProjectId = "External" + $"{_projectName};{ProjectPath}".GetHashCode().ToString(CultureInfo.InvariantCulture);
9797
_componentName = componentName;
9898
ComponentType = ComponentType.ComComponent;
9999
ModuleContentHashOnCreation = GetContentHash(null);

0 commit comments

Comments
 (0)