Implemented interface member:
property
Install
NuGet.Commands.IRestoreTargetGraph.Install
1 write to Install
NuGet.Commands (1)
RestoreCommand\RestoreTargetGraph.cs (1)
87Install = install;
3 references to Install
NuGet.Commands (3)
RestoreCommand\ProjectRestoreCommand.cs (1)
354.SelectMany(g => g.Install.Where(match => uniquePackages.Add(match.Library))).ToList();
RestoreCommand\RestoreCommand.cs (1)
750telemetry.TelemetryEvent[NewPackagesInstalledCount] = graphs.Where(g => !g.InConflict).SelectMany(g => g.Install).Distinct().Count();
RestoreCommand\RestoreResult.cs (1)
158return new HashSet<LibraryIdentity>(RestoreGraphs.Where(g => !g.InConflict).SelectMany(g => g.Install).Distinct().Select(m => m.Library));