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