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;
10 references to Name
Microsoft.Build (10)
Evaluation\Evaluator.cs (1)
833
!EnvironmentUtilities.IsWellKnownEnvironmentDerivedProperty(p.
Name
))
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (7)
254
string name = property.
Name
;
256
loggingContext.ProcessPropertyWrite(new PropertyWriteInfo(property.
Name
, string.IsNullOrEmpty(property.EscapedValue), location));
289
property.
Name
,
292
ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("PropertyAssignment", property.
Name
, property.EvaluatedValue, source));
306
if (MSBuildNameIgnoreCaseComparer.Default.Equals(property.
Name
, "MSBuildAllProjects"))
326
property.
Name
,
340
property.
Name
,
Utilities\Utilities.cs (2)
656
if (item is IProperty property && !string.IsNullOrEmpty(property.
Name
))
658
yield return new(property.
Name
, property.EvaluatedValue ?? string.Empty);