We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aefb60 commit e67eaa3Copy full SHA for e67eaa3
src/Cli/dotnet/Commands/Package/List/PackageListCommand.cs
@@ -49,15 +49,16 @@ public override int Execute()
49
50
private int RunRestore(string projectOrSolution, ReportOutputFormat formatOption, bool interactive)
51
{
52
- List<string> args;
+ List<string> args = ["-target:Restore", projectOrSolution];
53
54
if (formatOption == ReportOutputFormat.json)
55
56
- args = ["-target:restore", projectOrSolution, "-noConsoleLogger"];
+ args.Add("-noConsoleLogger");
57
}
58
else
59
60
- args = ["-target:restore", projectOrSolution, "--consoleLoggerParameters:Verbosity=Minimal;NoSummary"];
+ args.Add("-consoleLoggerParameters:NoSummary");
61
+ args.Add("-verbosity:minimal");
62
63
64
if (interactive)
0 commit comments