1 instantiation of PackageWithDependants
NuGet.PackageManagement (1)
Utility\PackageGraphAnalysisUtilities.cs (1)
104
packageWithDependants.Add(new
PackageWithDependants
(package, GetDependantPackages(package, packageDependencyInfos).ToArray()));
4 references to PackageWithDependants
NuGet.PackageManagement (4)
Utility\PackageGraphAnalysisUtilities.cs (4)
95
/// Given <paramref name="packageDependencyInfos"/> generates a collection of <see cref="
PackageWithDependants
"/> with the dependants populated correctly.
97
/// <returns>A collection of <see cref="
PackageWithDependants
"/></returns>
98
public static IList<
PackageWithDependants
> GetPackagesWithDependants(IList<PackageDependencyInfo> packageDependencyInfos)
100
var packageWithDependants = new List<
PackageWithDependants
>();