From 55437715d74a11fb729280eca48faff62bd57a4f Mon Sep 17 00:00:00 2001 From: Arlo Godfrey Date: Fri, 2 Aug 2024 16:15:03 -0500 Subject: [PATCH] Disable consolelogger, add tracking issue --- GenerateAllSolution.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GenerateAllSolution.ps1 b/GenerateAllSolution.ps1 index f4282943..1ef1efac 100644 --- a/GenerateAllSolution.ps1 +++ b/GenerateAllSolution.ps1 @@ -142,7 +142,9 @@ if ($UseDiagnostics.IsPresent) $sdkoptions = "-d" $diagnostics = @( '-bl:slngen.binlog' - '--consolelogger:ShowEventId;Summary;Verbosity=Detailed' + # Console logger + binlog causes exception and failure + # Track https://github.com/microsoft/slngen/issues/451 + #'--consolelogger:ShowEventId;Summary;Verbosity=Detailed' ) } else