20 references to Properties
Microsoft.Build (6)
Logging\BinaryLogger\BuildEventArgsWriter.cs (1)
429WriteProperties(e.Properties);
Logging\BuildEventArgsExtensions.cs (1)
28=> EnumerateProperties(eventArgs.Properties);
Logging\ParallelLogger\ParallelConsoleLogger.cs (2)
551if (e.Properties != null) 553WriteProperties(e, e.Properties);
Logging\SerialConsoleLogger.cs (2)
272if (e.Properties != null) 274var propertyList = ExtractPropertyList(e.Properties);
Microsoft.Build.Engine.UnitTests (7)
BackEnd\BuildManager_Tests.cs (6)
721Dictionary<string, string> properties = ExtractProjectStartedPropertyList(projectStartedEvent.Properties); 795Assert.NotNull(projectStartedEvent.Properties); 797Dictionary<string, string> properties = ExtractProjectStartedPropertyList(projectStartedEvent.Properties); 806properties = ExtractProjectStartedPropertyList(projectStartedEvent.Properties); 843Dictionary<string, string> properties = ExtractProjectStartedPropertyList(projectStartedEvent.Properties); 940Dictionary<string, string> properties = ExtractProjectStartedPropertyList(projectStartedEvent.Properties);
BuildEventArgsSerialization_Tests.cs (1)
175e => TranslationHelpers.GetPropertiesString(e.Properties),
Microsoft.Build.Framework.UnitTests (4)
CustomEventArgSerialization_Tests.cs (4)
603newGenericEvent.Properties.ShouldNotBeNull(); // "Expected Properties to not be null" 607foreach (DictionaryEntry entry in newGenericEvent.Properties) 709newGenericEvent.Properties.ShouldBe(genericEvent.Properties); // "Expected Properties to match"
Microsoft.DotNet.ArcadeLogging (1)
PipelinesLogger.cs (1)
245string propertyCategory = e.Properties?.Cast<DictionaryEntry>().LastOrDefault(p => p.Key.ToString().Equals(s_TelemetryMarker)).Value?.ToString();
XmlFileLogger (2)
ObjectModel\Project.cs (2)
130if (projectStartedEventArgs.Properties != null) 132Properties.AddProperties(projectStartedEventArgs.Properties.Cast<DictionaryEntry>());