8 writes to Properties
Microsoft.Build (3)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
467Properties = properties,
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
706e.Properties = propertyList;
LogMessagePacketBase.cs (1)
1399args.Properties = ReadProperties(translator);
Microsoft.Build.Engine.UnitTests (5)
BackEnd\NodePackets_Tests.cs (1)
149Properties = CreateProperties(),
BuildEventArgsDataEnumeration.cs (3)
30Properties = new List<object>() 57Properties = null, 95Properties = null,
BuildEventArgsSerialization_Tests.cs (1)
770Properties = new List<DictionaryEntry>() { new DictionaryEntry("Key", "Value") },
18 references to Properties
Microsoft.Build (8)
BuildCheck\Infrastructure\BuildEventsProcessor.cs (1)
50Internal.Utilities.EnumerateProperties(evaluationFinishedEventArgs.Properties, propertiesLookup,
Logging\BinaryLogger\BuildEventArgsWriter.cs (1)
375WriteProperties(e.Properties);
Logging\BuildEventArgsExtensions.cs (1)
21=> EnumerateProperties(eventArgs.Properties);
Logging\ParallelLogger\ParallelConsoleLogger.cs (2)
1197if (projectEvaluationFinished.Properties != null) 1199WriteProperties(projectEvaluationFinished, projectEvaluationFinished.Properties);
Logging\SerialConsoleLogger.cs (2)
577if (projectEvaluationFinished.Properties != null) 579var propertyList = ExtractPropertyList(projectEvaluationFinished.Properties);
LogMessagePacketBase.cs (1)
1012WriteProperties(args.Properties, translator);
Microsoft.Build.CommandLine.UnitTests (4)
TerminalLogger_Tests.cs (4)
741mockLogFromPlaybackWithoutTL.EvaluationFinishedEvents.ShouldContain(x => (x.Properties != null) && x.Properties.GetEnumerator().MoveNext()); 742mockLogFromPlaybackWithTL.EvaluationFinishedEvents.ShouldContain(x => (x.Properties != null) && x.Properties.GetEnumerator().MoveNext());
Microsoft.Build.Engine.UnitTests (6)
BackEnd\BuildManager_Tests.cs (5)
141Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties); 258Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties); 575Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties); 615Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties); 659Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties);
BuildEventArgsSerialization_Tests.cs (1)
778e => TranslationHelpers.GetPropertiesString(e.Properties),