Skip to content

Commit 651d207

Browse files
committed
C#: Fix assembly labels.
1 parent 79e246f commit 651d207

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/extractor/Semmle.Extraction/Entities/Assembly.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ public override IId Id
6969
get
7070
{
7171
return assemblyPath == null
72-
? new Key(assembly, ";sourcefile")
73-
: new Key(assembly, "#file:///", assemblyPath.Replace("\\", "/"), ";sourcefile");
72+
? new Key(assembly, ";assembly")
73+
: new Key(assembly, "#file:///", assemblyPath.Replace("\\", "/"), ";assembly");
7474
}
7575
}
7676
}

0 commit comments

Comments
 (0)