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)
140return owner.CreatePropertyElement(Name);
Construction\ProjectPropertyGroupElement.cs (1)
83if (String.Equals(property.Name, name, StringComparison.OrdinalIgnoreCase) && property.Condition.Length == 0)
Construction\ProjectRootElement.cs (1)
1216if (MSBuildNameIgnoreCaseComparer.Default.Equals(property.Name, name))
Definition\Project.cs (1)
4505ProjectProperty predecessor = GetProperty(propertyElement.Name);
Definition\ProjectProperty.cs (3)
363ErrorUtilities.VerifyThrowInvalidOperation(!ProjectHasMatchingGlobalProperty(project, xml.Name), "OM_GlobalProperty", xml.Name); 382{ return _xml.Name; }
Evaluation\Evaluator.cs (5)
485ProjectPropertyGroupTaskPropertyInstance 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)
121P? originalProperty = _wrapped.GetProperty(propertyElement.Name);
Instance\ProjectInstance.cs (1)
1911ProjectPropertyInstance property = ProjectPropertyInstance.Create(propertyElement.Name, evaluatedValueEscaped, false /* may not be reserved */, _isImmutable);