2 implementations of Name
Microsoft.Build (2)
Definition\ProjectProperty.cs (1)
71
public abstract string
Name
Instance\ProjectPropertyInstance.cs (1)
58
public string
Name
=> _name;
9 references to Name
Microsoft.Build (9)
Evaluation\Evaluator.cs (1)
846
!EnvironmentUtilities.IsWellKnownEnvironmentDerivedProperty(p.
Name
))
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (6)
270
string name = property.
Name
;
272
loggingContext.ProcessPropertyWrite(new PropertyWriteInfo(property.
Name
, string.IsNullOrEmpty(property.EscapedValue), location));
306
property.
Name
,
328
if (MSBuildNameIgnoreCaseComparer.Default.Equals(property.
Name
, "MSBuildAllProjects"))
345
property.
Name
,
362
property.
Name
,
Utilities\Utilities.cs (2)
651
if (item is IProperty property && !string.IsNullOrEmpty(property.
Name
))
653
yield return new(property.
Name
, property.EvaluatedValue ?? string.Empty);