8 writes to Properties
Microsoft.Build (3)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
467
Properties
= properties,
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
706
e.
Properties
= propertyList;
LogMessagePacketBase.cs (1)
1340
args.
Properties
= ReadProperties(translator);
Microsoft.Build.Engine.UnitTests (5)
BackEnd\NodePackets_Tests.cs (1)
152
Properties
= CreateProperties(),
BuildEventArgsDataEnumeration.cs (3)
29
Properties
= new List<object>()
56
Properties
= null,
94
Properties
= null,
BuildEventArgsSerialization_Tests.cs (1)
770
Properties
= new List<DictionaryEntry>() { new DictionaryEntry("Key", "Value") },
18 references to Properties
Microsoft.Build (8)
BuildCheck\Infrastructure\BuildEventsProcessor.cs (1)
49
=> ExtractPropertiesLookup(evaluationFinishedEventArgs.
Properties
);
Logging\BinaryLogger\BuildEventArgsWriter.cs (1)
354
WriteProperties(e.
Properties
);
Logging\BuildEventArgsExtensions.cs (1)
21
=> EnumerateProperties(eventArgs.
Properties
);
Logging\ParallelLogger\ParallelConsoleLogger.cs (2)
1197
if (projectEvaluationFinished.
Properties
!= null)
1199
WriteProperties(projectEvaluationFinished, projectEvaluationFinished.
Properties
);
Logging\SerialConsoleLogger.cs (2)
577
if (projectEvaluationFinished.
Properties
!= null)
579
var propertyList = ExtractPropertyList(projectEvaluationFinished.
Properties
);
LogMessagePacketBase.cs (1)
953
WriteProperties(args.
Properties
, translator);
Microsoft.Build.Engine.UnitTests (10)
BackEnd\BuildManager_Tests.cs (5)
140
Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.
Properties
);
257
Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.
Properties
);
574
Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.
Properties
);
614
Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.
Properties
);
658
Dictionary<string, string> properties = ExtractProjectStartedPropertyList(evalFinishedEvent.
Properties
);
BuildEventArgsSerialization_Tests.cs (1)
778
e => TranslationHelpers.GetPropertiesString(e.
Properties
),
TerminalLogger_Tests.cs (4)
792
mockLogFromPlaybackWithoutTL.EvaluationFinishedEvents.ShouldContain(x => (x.
Properties
!= null) && x.
Properties
.GetEnumerator().MoveNext());
793
mockLogFromPlaybackWithTL.EvaluationFinishedEvents.ShouldContain(x => (x.
Properties
!= null) && x.
Properties
.GetEnumerator().MoveNext());