Skip to content

Commit d4e9bbc

Browse files
authored
Fix #49921 by making the dgspec inner build silent (#49927)
2 parents 2a4b33e + b7cfb33 commit d4e9bbc

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)