Skip to content

Commit e291ccf

Browse files
committed
feat: simple dictionary as export map
1 parent e182d7c commit e291ccf

4 files changed

Lines changed: 77 additions & 298 deletions

File tree

src/TagBites.ComponentModel.Composition/Collections/DoubleDictionary.cs

Lines changed: 0 additions & 157 deletions
This file was deleted.

src/TagBites.ComponentModel.Composition/Collections/MultiDoubleDictionary.cs

Lines changed: 0 additions & 59 deletions
This file was deleted.

src/TagBites.ComponentModel.Composition/ComponentModel/Composition/ExportComponentDefinition.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System;
21
using System.Reflection;
32
using System.Runtime.InteropServices;
43
using System.Text;
@@ -145,6 +144,6 @@ public static string GetTypeIdentifier(Type type)
145144
var guid = GetTypeGuid(type);
146145
return guid != Guid.Empty
147146
? guid.ToString("D").ToUpper()
148-
: $"{type.FullName},{type.GetTypeInfo().Assembly.GetName().Name}";
147+
: $"{type.FullName},{type.Assembly.GetName().Name}";
149148
}
150149
}

0 commit comments

Comments
 (0)