Skip to content

Commit 36b7468

Browse files
committed
Fix breaking change after update to .NET 4.8
1 parent 2719726 commit 36b7468

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/CommandLine/Commands/SlnListCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ protected override async Task<CommandResult> ExecuteAsync(
4747

4848
WriteLine($"Load solution '{path}'", Verbosity.Minimal);
4949

50-
SolutionInfo solutionInfo = await loader.LoadSolutionInfoAsync(path, consoleProgress, cancellationToken);
50+
SolutionInfo solutionInfo = await loader.LoadSolutionInfoAsync(path, consoleProgress, cancellationToken: cancellationToken);
5151

5252
string solutionDirectory = Path.GetDirectoryName(solutionInfo.FilePath);
5353

0 commit comments

Comments
 (0)