From b6b775a89dd4e6608fb5ac8b49ef7b150e05c01e Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 9 Nov 2023 11:04:41 +0100 Subject: [PATCH] [tests] Revert workaround for bug in MSBuild[.StructuredLogger]. Fixes #18568. We no longer need this workaround. Fixes https://github.com/xamarin/xamarin-macios/issues/18568. --- tests/common/BinLog.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/common/BinLog.cs b/tests/common/BinLog.cs index e751dc48c97e..4abda3d95d0a 100644 --- a/tests/common/BinLog.cs +++ b/tests/common/BinLog.cs @@ -112,12 +112,6 @@ public static IEnumerable ReadBuildEvents (string path) continue; yield return record.Args; - - if (record.Args is BuildFinishedEventArgs) { - // Skip over anything that follows - // https://github.com/xamarin/xamarin-macios/issues/18568 - break; - } } }