Skip to content

Commit

Permalink
Fix breaking change after update to .NET 4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Jun 15, 2020
1 parent 2719726 commit 36b7468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CommandLine/Commands/SlnListCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected override async Task<CommandResult> ExecuteAsync(

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

SolutionInfo solutionInfo = await loader.LoadSolutionInfoAsync(path, consoleProgress, cancellationToken);
SolutionInfo solutionInfo = await loader.LoadSolutionInfoAsync(path, consoleProgress, cancellationToken: cancellationToken);

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

Expand Down

0 comments on commit 36b7468

Please sign in to comment.