2 instantiations of ExportKey
Microsoft.CodeAnalysis.Remote.Workspaces (2)
VisualStudioMefHostServices.cs (2)
46var key = new ExportKey(typeof(TExtension).AssemblyQualifiedName!, typeof(TMetadata).AssemblyQualifiedName!); 63var key = new ExportKey(typeof(TExtension).AssemblyQualifiedName!, "");
7 references to ExportKey
Microsoft.CodeAnalysis.Remote.Workspaces (7)
VisualStudioMefHostServices.cs (7)
23private ImmutableDictionary<ExportKey, IEnumerable> _exportsMap 24= ImmutableDictionary<ExportKey, IEnumerable>.Empty; 46var key = new ExportKey(typeof(TExtension).AssemblyQualifiedName!, typeof(TMetadata).AssemblyQualifiedName!); 63var key = new ExportKey(typeof(TExtension).AssemblyQualifiedName!, ""); 73private readonly struct ExportKey : IEquatable<ExportKey> 84public bool Equals(ExportKey other) 89=> obj is ExportKey key && Equals(key);