1 instantiation of LibraryRangeComparer
NuGet.Commands (1)
RestoreCommand\DependencyGraphResolver.LibraryRangeComparer.cs (1)
26public static LibraryRangeComparer Instance { get; } = new LibraryRangeComparer();
5 references to LibraryRangeComparer
NuGet.Commands (5)
RestoreCommand\DependencyGraphResolver.DependencyGraphItemIndexer.cs (3)
63/// A case-insensitive dictionary that stores a <see cref="LibraryRangeIndex" /> by the <see cref="LibraryRange" /> of a library. This dictionary uses the <see cref="LibraryRangeComparer" /> to compare <see cref="LibraryRange" /> objects. 65private readonly ConcurrentDictionary<LibraryRange, LibraryRangeIndex> _libraryRangeTable = new(LibraryRangeComparer.Instance); 131/// The <see cref="LibraryRangeComparer" /> is used to determine if two <see cref="LibraryRange" /> objects are equal.
RestoreCommand\DependencyGraphResolver.LibraryRangeComparer.cs (2)
24/// Gets an instance of <see cref="LibraryRangeComparer" />. 26public static LibraryRangeComparer Instance { get; } = new LibraryRangeComparer();