2 implementations of Name
Microsoft.Build (2)
Definition\ProjectProperty.cs (1)
71public abstract string Name
Instance\ProjectPropertyInstance.cs (1)
58public string Name => _name;
9 references to Name
Microsoft.Build (9)
Evaluation\Evaluator.cs (1)
841!EnvironmentUtilities.IsWellKnownEnvironmentDerivedProperty(p.Name))
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (6)
258string name = property.Name; 260loggingContext.ProcessPropertyWrite(new PropertyWriteInfo(property.Name, string.IsNullOrEmpty(property.EscapedValue), location)); 294property.Name, 316if (MSBuildNameIgnoreCaseComparer.Default.Equals(property.Name, "MSBuildAllProjects")) 333property.Name, 350property.Name,
Utilities\Utilities.cs (2)
656if (item is IProperty property && !string.IsNullOrEmpty(property.Name)) 658yield return new(property.Name, property.EvaluatedValue ?? string.Empty);