47 references to AppendChild
dotnet (1)
MsbuildProject.cs (1)
108itemGroup.AppendChild(ProjectRootElement.CreateItemElement(ProjectItemElementType, @ref));
Microsoft.Build (46)
Construction\ProjectElementContainer.cs (6)
127/// Cannot be set directly; use <see cref="AppendChild">AppendChild()</see>. 189/// Reference child may be null, in which case this is equivalent to <see cref="AppendChild">AppendChild(child)</see>. 210AppendChild(child); 373AppendChild(child.Clone(ContainingProject)); 417parent?.AppendChild(clone); 427clone.AppendChild(child.Clone(clone.ContainingProject));
Construction\ProjectImportGroupElement.cs (1)
68AppendChild(newImport);
Construction\ProjectItemDefinitionElement.cs (1)
88AppendChild(metadata);
Construction\ProjectItemDefinitionGroupElement.cs (1)
59AppendChild(itemDefinition);
Construction\ProjectItemElement.cs (1)
409AppendChild(metadata);
Construction\ProjectPropertyGroupElement.cs (1)
66AppendChild(newProperty);
Construction\ProjectRootElement.cs (6)
968AppendChild(import); 981AppendChild(importGroup); 1072AppendChild(newItemGroup); 1121itemDefinitionGroupToAddTo.AppendChild(newItemDefinition); 1241AppendChild(target); 1254AppendChild(usingTask);
Construction\ProjectTargetElement.cs (3)
357AppendChild(itemGroup); 370AppendChild(propertyGroup); 385AppendChild(task);
Construction\ProjectTaskElement.cs (2)
251AppendChild(outputItem); 281AppendChild(outputProperty);
Construction\ProjectUsingTaskElement.cs (1)
222AppendChild(newTaskBody);
Construction\Solution\SolutionProjectGenerator.cs (16)
239msbuildProject.AppendChild(solutionConfigurationProperties); 1005traversalProject.AppendChild(importAfter); 1006traversalProject.AppendChild(directorySolutionTargetsPropertyGroup); 1007traversalProject.AppendChild(directorySolutionTargetsImport); 1008traversalProject.AppendChild(importAfterLocal); 1010directorySolutionTargetsPropertyGroup.AppendChild(directorySolutionTargetsFileProperty); 1011directorySolutionTargetsPropertyGroup.AppendChild(directorySolutionTargetsBasePathProperty); 1012directorySolutionTargetsPropertyGroup.AppendChild(directorySolutionTargetsPathProperty); 1014directorySolutionPropsPropertyGroup.AppendChild(directorySolutionPropsFileProperty); 1015directorySolutionPropsPropertyGroup.AppendChild(directorySolutionPropsBasePathProperty); 1016directorySolutionPropsPropertyGroup.AppendChild(directorySolutionPropsPathProperty); 2296traversalProject.AppendChild(configurationDefaultingPropertyGroup); 2302traversalProject.AppendChild(platformDefaultingPropertyGroup); 2330traversalProject.AppendChild(venusConfiguration); 2342traversalProject.AppendChild(globalProperties); 2359traversalProject.AppendChild(frameworkVersionProperties);
Construction\UsingTaskParameterGroupElement.cs (1)
77AppendChild(newParameter);
Definition\Project.cs (1)
3096groupToAppendTo.AppendChild(itemElement);
Instance\ProjectItemDefinitionInstance.cs (1)
220parent.AppendChild(element);
Instance\ProjectItemInstance.cs (1)
710parent.AppendChild(item);
Instance\ProjectPropertyInstance.cs (1)
310parent.AppendChild(property);
Instance\ProjectTargetInstance.cs (1)
470rootElement.AppendChild(target);
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementContainerLink.cs (1)
40/// Helps implementation of the <see cref="ProjectElementContainer.AppendChild"/>.