1 instantiation of RestoreSummary
NuGet.Commands (1)
RestoreCommand\RestoreRunner.cs (1)
331return new RestoreSummary(
28 references to RestoreSummary
aspire-managed (1)
NuGet\Commands\RestoreCommand.cs (1)
208var summary = results.Count > 0 ? results[0] : null;
NuGet.Build.Tasks (5)
BuildTasksUtility.cs (4)
118public static Task<List<RestoreSummary>> RestoreAsync( 135public static async Task<List<RestoreSummary>> RestoreAsync( 177var restoreSummaries = new List<RestoreSummary>(); 290RestoreSummary.Log(log, restoreSummaries);
RestoreTask.cs (1)
203foreach (var summary in restoreSummaries)
NuGet.Build.Tasks.Console (1)
MSBuildStaticGraphRestore.cs (1)
153List<RestoreSummary> restoreSummaries = await BuildTasksUtility.RestoreAsync(
NuGet.Commands (17)
RestoreCommand\RestoreResult.cs (1)
87/// <inheritdoc cref="RestoreSummary.AuditRan"/>
RestoreCommand\RestoreRunner.cs (12)
26public static async Task<IReadOnlyList<RestoreSummary>> RunAsync(RestoreArgs restoreContext, CancellationToken token) 38public static async Task<IReadOnlyList<RestoreSummary>> RunAsync(RestoreArgs restoreContext) 47private static async Task<IReadOnlyList<RestoreSummary>> RunAsync( 70var restoreTasks = new List<Task<RestoreSummary>>(maxTasks); 71var restoreSummaries = new List<RestoreSummary>(requests.Count); 79var restoreSummary = await CompleteTaskAsync(restoreTasks); 92var restoreSummary = await CompleteTaskAsync(restoreTasks); 241private static async Task<RestoreSummary> ExecuteAndCommitAsync(RestoreSummaryRequest summaryRequest, IRestoreProgressReporter progressReporter, CancellationToken token) 268public static Task<RestoreSummary> CommitAsync(RestoreResultPair restoreResult, CancellationToken token) => CommitAsync(restoreResult, progressReporter: null, token); 270private static async Task<RestoreSummary> CommitAsync(RestoreResultPair restoreResult, IRestoreProgressReporter progressReporter, CancellationToken token) 339private static async Task<RestoreSummary> CompleteTaskAsync(List<Task<RestoreSummary>> restoreTasks)
RestoreCommand\RestoreSummary.cs (4)
95public static void Log(ILogger logger, IReadOnlyList<RestoreSummary> restoreSummaries, bool logErrors = false) 107foreach (RestoreSummary restoreSummary in restoreSummaries) 141foreach (var restoreSummary in restoreSummaries) 200RestoreSummary restoreSummary,
NuGet.PackageManagement (4)
BuildIntegration\DependencyGraphRestoreUtility.cs (4)
33public static Task<IReadOnlyList<RestoreSummary>> RestoreAsync( 64public static async Task<IReadOnlyList<RestoreSummary>> RestoreAsync( 101RestoreSummary.Log(log, restoreSummaries); 107return new List<RestoreSummary>();