1 instantiation of DependencyGraphItemIndexer
NuGet.Commands (1)
RestoreCommand\DependencyGraphResolver.cs (1)
93
_indexingTable = new
DependencyGraphItemIndexer
(_rootProjectLibraryDependency);
7 references to DependencyGraphItemIndexer
NuGet.Commands (7)
RestoreCommand\DependencyGraphResolver.cs (4)
44
/// A <see cref="
DependencyGraphItemIndexer
" /> used to index dependency graph items.
46
private readonly
DependencyGraphItemIndexer
_indexingTable;
1134
evictions[evictedLibraryRangeIndex] = (
DependencyGraphItemIndexer
.CreatePathToRef(currentDependencyGraphItem.Path, currentDependencyGraphItem.LibraryRangeIndex), currentDependencyGraphItem.LibraryDependencyIndex, chosenResolvedItem.LibraryDependency.LibraryRange.TypeConstraint);
1381
Path = isCentrallyPinnedTransitiveDependency || isRootPackageReference ? _rootedDependencyPath :
DependencyGraphItemIndexer
.CreatePathToRef(currentDependencyGraphItem.Path, currentDependencyGraphItem.LibraryRangeIndex),
RestoreCommand\DependencyGraphResolver.DependencyGraphItemIndexer.cs (1)
78
/// Initializes a new instance of the <see cref="
DependencyGraphItemIndexer
" /> class.
RestoreCommand\DependencyGraphResolver.ResolvedDependencyGraphItem.cs (2)
35
/// <param name="indexingTable">The <see cref="
DependencyGraphItemIndexer
" /> to use when indexing dependencies.</param>
40
DependencyGraphItemIndexer
indexingTable,