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