2 writes to LibraryRangeIndex
NuGet.Commands (2)
RestoreCommand\DependencyGraphResolver.cs (2)
191
LibraryRangeIndex
= LibraryRangeIndex.Project,
1380
LibraryRangeIndex
= childLibraryRangeIndex,
10 references to LibraryRangeIndex
NuGet.Commands (10)
RestoreCommand\DependencyGraphResolver.cs (6)
807
LibraryRangeIndex currentLibraryRangeIndex = currentDependencyGraphItem.
LibraryRangeIndex
;
981
if (evictions.TryGetValue(currentDependencyGraphItem.
LibraryRangeIndex
, out (LibraryRangeIndex[], LibraryDependencyIndex, LibraryDependencyTarget) eviction))
1134
evictions[evictedLibraryRangeIndex] = (DependencyGraphItemIndexer.CreatePathToRef(currentDependencyGraphItem.Path, currentDependencyGraphItem.
LibraryRangeIndex
), currentDependencyGraphItem.LibraryDependencyIndex, chosenResolvedItem.LibraryDependency.LibraryRange.TypeConstraint);
1341
childResolvedDependencyGraphItem.Parents?.Add(currentDependencyGraphItem.
LibraryRangeIndex
);
1381
Path = isCentrallyPinnedTransitiveDependency || isRootPackageReference ? _rootedDependencyPath : DependencyGraphItemIndexer.CreatePathToRef(currentDependencyGraphItem.Path, currentDependencyGraphItem.
LibraryRangeIndex
),
1382
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
;