Skip to content

Commit 4c26c96

Browse files
committed
Update all projects in solution with dotnet package update
1 parent 79474d8 commit 4c26c96

6 files changed

Lines changed: 829 additions & 120 deletions

File tree

src/NuGet.Core/NuGet.CommandLine.XPlat/Commands/Package/Update/IPackageUpdateIO.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
using System.Collections.Generic;
77
using System.Threading;
88
using System.Threading.Tasks;
9-
using NuGet.Configuration;
109
using NuGet.Common;
10+
using NuGet.Configuration;
1111
using NuGet.ProjectModel;
1212
using NuGet.Protocol.Model;
1313
using NuGet.Versioning;
@@ -112,10 +112,11 @@ void UpdatePackageReference(
112112

113113
/// <summary>Gets the assets file for a project.</summary>
114114
/// <param name="dgSpec">The restore inputs for the project.</param>
115+
/// <param name="projectPath">The path to the project to get the assets file for.</param>
115116
/// <param name="logger">The output logger</param>
116117
/// <param name="cancellationToken">The cancellation token.</param>
117118
/// <returns>The assets file for the project.</returns>
118-
Task<LockFile> GetProjectAssetsFileAsync(DependencyGraphSpec dgSpec, ILogger logger, CancellationToken cancellationToken);
119+
Task<LockFile> GetProjectAssetsFileAsync(DependencyGraphSpec dgSpec, string projectPath, ILogger logger, CancellationToken cancellationToken);
119120

120121
/// <summary>Gets the package source mapping configuration for the current settins context.</summary>
121122
/// <returns>The package source mapping settings.</returns>

0 commit comments

Comments
 (0)