Skip to content

Commit b7cfb33

Browse files
committed
fix #49921 by making the dgspec inner build silent
1 parent 99c8904 commit b7cfb33

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Cli/dotnet/Commands/Package/Add/PackageAddCommand.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ private static void GetProjectDependencyGraph(string projectFilePath, string dgF
8989
$"-property:RestoreDotnetCliToolReferences=false",
9090

9191
// Output should not include MSBuild version header
92-
"-nologo"
92+
"-nologo",
93+
94+
// Set verbosity to quiet to avoid cluttering the output for this 'inner' build
95+
"-v:quiet"
9396
];
9497

9598
var result = new MSBuildForwardingApp(args).Execute();

0 commit comments

Comments
 (0)