We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7901b7f commit d72b8bfCopy full SHA for d72b8bf
src/StructuredLogger/BinaryLogger/BuildEventArgsReader.cs
@@ -723,12 +723,11 @@ private BuildEventArgs ReadProjectEvaluationFinishedEventArgs()
723
724
if (_fileFormatVersion >= 12)
725
{
726
- if (_fileFormatVersion < BinaryLogger.ForwardCompatibilityMinimalVersion)
+ IEnumerable globalProperties = null;
727
+ if (ReadBoolean())
728
- // Throw away, but need to advance past it
729
- ReadBoolean();
+ globalProperties = ReadStringDictionary();
730
}
731
- IEnumerable? globalProperties = ReadStringDictionary();
732
733
var propertyList = ReadPropertyList();
734
var itemList = ReadProjectItems();
0 commit comments