7 references to ContainerLink
Microsoft.Build (7)
Construction\ProjectElementContainer.cs (7)
117public int Count { get => Link != null ? ContainerLink.Count : _count; private set => _count = value; } 123public ProjectElement FirstChild { get => Link != null ? ContainerLink.FirstChild : _firstChild; private set => _firstChild = value; } 129public ProjectElement LastChild { get => Link != null ? ContainerLink.LastChild : _lastChild; private set => _lastChild = value; } 148ContainerLink.InsertAfterChild(child, reference); 204ContainerLink.InsertBeforeChild(child, reference); 301ContainerLink.RemoveChild(child); 646ContainerLink.AddInitialChild(child);