5 instantiations of PropertyData
Microsoft.Build (5)
Collections\PropertyDictionary.cs (1)
583yield return new(kvp.Key, EscapingUtilities.UnescapeAll(kvp.EscapedValue));
Utilities\Utilities.cs (4)
708yield return new(property.Name, property.EvaluatedValue ?? string.Empty); 712yield return new(key, dictionaryEntry.Value as string ?? string.Empty); 716yield return new(kvp.Key, kvp.Value); 720yield return new(keyTimeSpanValue.Key, keyTimeSpanValue.Value.Ticks.ToString());
9 references to PropertyData
Microsoft.Build (9)
Collections\PropertyDictionary.cs (2)
577internal IEnumerable<PropertyData> Enumerate() 590foreach (var property in Enumerate())
Logging\BuildEventArgsExtensions.cs (3)
19public static IEnumerable<PropertyData> EnumerateProperties( 26public static IEnumerable<PropertyData> EnumerateProperties( 83private static IEnumerable<PropertyData> EnumerateProperties(IEnumerable? properties)
Logging\TerminalLogger\TerminalLogger.cs (1)
910foreach (var property in evalFinish.EnumerateProperties())
Utilities\Utilities.cs (3)
682public static IEnumerable<PropertyData> EnumerateProperties(IEnumerable properties) 702IEnumerable<PropertyData> CastOneByOne(IEnumerable props) 742foreach (var tuple in EnumerateProperties(properties))