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