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