2 writes to LibraryRangeIndex
NuGet.Commands (2)
RestoreCommand\DependencyGraphResolver.cs (2)
191
LibraryRangeIndex
= LibraryRangeIndex.Project,
1390
LibraryRangeIndex
= childLibraryRangeIndex,
10 references to LibraryRangeIndex
NuGet.Commands (10)
RestoreCommand\DependencyGraphResolver.cs (6)
817
LibraryRangeIndex currentLibraryRangeIndex = currentDependencyGraphItem.
LibraryRangeIndex
;
991
if (evictions.TryGetValue(currentDependencyGraphItem.
LibraryRangeIndex
, out (LibraryRangeIndex[], LibraryDependencyIndex, LibraryDependencyTarget) eviction))
1144
evictions[evictedLibraryRangeIndex] = (DependencyGraphItemIndexer.CreatePathToRef(currentDependencyGraphItem.Path, currentDependencyGraphItem.
LibraryRangeIndex
), currentDependencyGraphItem.LibraryDependencyIndex, chosenResolvedItem.LibraryDependency.LibraryRange.TypeConstraint);
1351
childResolvedDependencyGraphItem.Parents?.Add(currentDependencyGraphItem.
LibraryRangeIndex
);
1391
Path = isCentrallyPinnedTransitiveDependency || isRootPackageReference ? _rootedDependencyPath : DependencyGraphItemIndexer.CreatePathToRef(currentDependencyGraphItem.Path, currentDependencyGraphItem.
LibraryRangeIndex
),
1392
Parent = currentDependencyGraphItem.
LibraryRangeIndex
,
RestoreCommand\DependencyGraphResolver.DependencyGraphItem.cs (3)
50
/// Gets or initializes the <see cref="
LibraryRangeIndex
" /> associated with this dependency graph item.
55
/// Gets or initializes the <see cref="
LibraryRangeIndex
" /> of this dependency graph item's parent.
60
/// Gets or initializes an array representing all of the parent <see cref="
LibraryRangeIndex
" /> values of this dependency graph item.
RestoreCommand\DependencyGraphResolver.ResolvedDependencyGraphItem.cs (1)
46
LibraryRangeIndex = dependencyGraphItem.
LibraryRangeIndex
;