3 overrides of IsGlobalProperty
Microsoft.Build (3)
Definition\ProjectProperty.cs (2)
426public override bool IsGlobalProperty 621public override bool IsGlobalProperty
ObjectModelRemoting\LinkedObjectFactory.cs (1)
349public override bool IsGlobalProperty => Link.IsGlobalProperty;
4 references to IsGlobalProperty
Microsoft.Build (4)
Definition\Project.cs (2)
2942ErrorUtilities.VerifyThrowInvalidOperation(property?.IsGlobalProperty != true, "OM_GlobalProperty", name); 3166ErrorUtilities.VerifyThrowInvalidOperation(!property.IsGlobalProperty, "OM_GlobalProperty", property.Name);
Definition\ProjectProperty.cs (1)
334if (property?.IsGlobalProperty == true && !project.GlobalPropertiesToTreatAsLocal.Contains(propertyName))
ObjectModelRemoting\DefinitionObjectsLinks\ProjectPropertyLink.cs (1)
47/// Access to remote <see cref="ProjectProperty.IsGlobalProperty"/>.