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