3 instantiations of ProjectImportGroupElement
Microsoft.Build (3)
Construction\ProjectImportGroupElement.cs (1)
80return new ProjectImportGroupElement(element, containingProject);
Evaluation\ProjectParser.cs (1)
425ProjectImportGroupElement importGroup = new ProjectImportGroupElement(element, parent, _project);
ObjectModelRemoting\LinkedObjectFactory.cs (1)
150return new ProjectImportGroupElement(link);
21 references to ProjectImportGroupElement
Microsoft.Build (21)
Construction\ProjectImportElement.cs (1)
178ErrorUtilities.VerifyThrowInvalidOperation(parent is ProjectRootElement || parent is ProjectImportGroupElement, "OM_CannotAcceptParent");
Construction\ProjectImportGroupElement.cs (1)
76internal static ProjectImportGroupElement CreateDisconnected(ProjectRootElement containingProject)
Construction\ProjectRootElement.cs (9)
333public ICollection<ProjectImportGroupElement> ImportGroups => GetChildrenOfType<ProjectImportGroupElement>(); 377public ICollection<ProjectImportGroupElement> ImportGroupsReversed => GetChildrenReversedOfType<ProjectImportGroupElement>(); 962ProjectImportGroupElement importGroupToAddTo = 984public ProjectImportGroupElement AddImportGroup() 986ProjectImportGroupElement importGroup = CreateImportGroupElement(); 1341public ProjectImportGroupElement CreateImportGroupElement() 1343return Link != null ? RootLink.CreateImportGroupElement() : ProjectImportGroupElement.CreateDisconnected(this);
Evaluation\Evaluator.cs (3)
927case ProjectImportGroupElement importGroup: 1429private void EvaluateImportGroupElement(string directoryOfImportingFile, ProjectImportGroupElement importGroupElement) 2501if (element is ProjectPropertyGroupElement || element is ProjectImportElement || element is ProjectImportGroupElement)
Evaluation\LazyItemEvaluator.cs (1)
109if (element is ProjectPropertyGroupElement || element is ProjectImportElement || element is ProjectImportGroupElement)
Evaluation\ProjectParser.cs (3)
421private ProjectImportGroupElement ParseProjectImportGroupElement(XmlElementWithLocation element, ProjectRootElement parent) 425ProjectImportGroupElement importGroup = new ProjectImportGroupElement(element, parent, _project); 450parent is ProjectRootElement || parent is ProjectImportGroupElement,
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementContainerLink.cs (1)
72/// Allow for creating a local representation to external object of type <see cref="ProjectImportGroupElement"/>
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
106public abstract ProjectImportGroupElement CreateImportGroupElement();
ObjectModelRemoting\LinkedObjectFactory.cs (1)
148public ProjectImportGroupElement Create(ProjectImportGroupElementLink link)