Implemented interface member:
property
Name
Microsoft.Build.Execution.IPropertyElementWithLocation.Name
15 references to Name
dotnet (1)
Extensions\ProjectRootElementExtensions.cs (1)
16
.FirstOrDefault(p => string.Equals(p.
Name
, "ProjectTypeGuids", StringComparison.OrdinalIgnoreCase))
Microsoft.Build (14)
Construction\ProjectPropertyElement.cs (1)
140
return owner.CreatePropertyElement(
Name
);
Construction\ProjectPropertyGroupElement.cs (1)
83
if (String.Equals(property.
Name
, name, StringComparison.OrdinalIgnoreCase) && property.Condition.Length == 0)
Construction\ProjectRootElement.cs (1)
1216
if (MSBuildNameIgnoreCaseComparer.Default.Equals(property.
Name
, name))
Definition\Project.cs (1)
4505
ProjectProperty predecessor = GetProperty(propertyElement.
Name
);
Definition\ProjectProperty.cs (3)
363
ErrorUtilities.VerifyThrowInvalidOperation(!ProjectHasMatchingGlobalProperty(project, xml.
Name
), "OM_GlobalProperty", xml.
Name
);
382
{ return _xml.
Name
; }
Evaluation\Evaluator.cs (5)
485
ProjectPropertyGroupTaskPropertyInstance property = new ProjectPropertyGroupTaskPropertyInstance(propertyElement.
Name
, propertyElement.Value, propertyElement.Condition, propertyElement.Location, propertyElement.ConditionLocation);
1302
((IDictionary<string, ProjectPropertyInstance>)_data.GlobalPropertiesDictionary).ContainsKey(propertyElement.
Name
) &&
1303
!_data.GlobalPropertiesToTreatAsLocal.Contains(propertyElement.
Name
))
1305
_evaluationLoggingContext.LogComment(MessageImportance.Low, "OM_GlobalProperty", propertyElement.
Name
);
1319
_expander.PropertiesUseTracker.CurrentlyEvaluatingPropertyElementName = propertyElement.
Name
;
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
121
P? originalProperty = _wrapped.GetProperty(propertyElement.
Name
);
Instance\ProjectInstance.cs (1)
1911
ProjectPropertyInstance property = ProjectPropertyInstance.Create(propertyElement.
Name
, evaluatedValueEscaped, false /* may not be reserved */, _isImmutable);