9 writes to Properties
Microsoft.Build (3)
BackEnd\Components\Communications\LogMessagePacket.cs (1)
315args.Properties = ReadProperties(translator);
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
467Properties = properties,
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
706e.Properties = propertyList;
Microsoft.Build.Engine.UnitTests (6)
BackEnd\NodePackets_Tests.cs (1)
152Properties = CreateProperties(),
BuildEventArgsDataEnumeration.cs (3)
29Properties = new List<object>() 56Properties = null, 94Properties = null,
BuildEventArgsSerialization_Tests.cs (1)
770Properties = new List<DictionaryEntry>() { new DictionaryEntry("Key", "Value") },
TerminalLogger_Tests.cs (1)
344Properties = properties?.ToDictionary(k => k.Item1, v => v.Item2) ?? new Dictionary<string, string>(),
16 references to Properties
Microsoft.Build (6)
BackEnd\Components\Communications\LogMessagePacket.cs (1)
107WriteProperties(args.Properties, translator);
BuildCheck\Infrastructure\BuildEventsProcessor.cs (1)
49=> ExtractPropertiesLookup(evaluationFinishedEventArgs.Properties);
Logging\BinaryLogger\BuildEventArgsWriter.cs (1)
354WriteProperties(e.Properties);
Logging\BuildEventArgsExtensions.cs (1)
21=> EnumerateProperties(eventArgs.Properties);
Logging\ParallelLogger\ParallelConsoleLogger.cs (2)
1198if (projectEvaluationFinished.Properties != null) 1200WriteProperties(projectEvaluationFinished, projectEvaluationFinished.Properties);
Microsoft.Build.Engine.UnitTests (10)
BackEnd\BuildManager_Tests.cs (5)
140Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties); 257Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties); 574Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties); 614Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties); 658Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.Properties);
BuildEventArgsSerialization_Tests.cs (1)
778e => TranslationHelpers.GetPropertiesString(e.Properties),
TerminalLogger_Tests.cs (4)
872mockLogFromPlaybackWithoutTL.EvaluationFinishedEvents.ShouldContain(x => (x.Properties != null) && x.Properties.GetEnumerator().MoveNext()); 873mockLogFromPlaybackWithTL.EvaluationFinishedEvents.ShouldContain(x => (x.Properties != null) && x.Properties.GetEnumerator().MoveNext());