Skip to content

Commit 452b93c

Browse files
committed
false interactive
1 parent e67eaa3 commit 452b93c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Cli/dotnet/Commands/Package/List/PackageListCommand.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,12 @@ private int RunRestore(string projectOrSolution, ReportOutputFormat formatOption
6565
{
6666
args.Add("-interactive:true");
6767
}
68-
MSBuildForwardingApp restoringCommand = new MSBuildForwardingApp(argsToForward: args);
68+
else
69+
{
70+
args.Add("-interactive:false");
71+
}
72+
73+
MSBuildForwardingApp restoringCommand = new MSBuildForwardingApp(argsToForward: args);
6974

7075
int exitCode = 0;
7176

0 commit comments

Comments
 (0)