Microsoft\Build\Tasks\Xaml\GenerateTemporaryAssemblyTask.cs (13)
90XElement projectElement = projectDocument.Element(XName.Get("Project", MSBuildNamespace));
145IEnumerable<XElement> itemGroups = project.Elements(XName.Get("ItemGroup", MSBuildNamespace));
146itemGroups.Elements(XName.Get(itemName, MSBuildNamespace)).Remove();
154XElement newItemGroup = new XElement(XName.Get("ItemGroup", MSBuildNamespace));
158XElement newElement = new XElement(XName.Get(itemName, MSBuildNamespace));
176XElement newItemGroup = new XElement(XName.Get("ItemGroup", MSBuildNamespace));
180XElement newResource = new XElement(XName.Get("EmbeddedResource", MSBuildNamespace));
183XElement type = new XElement(XName.Get("Type", MSBuildNamespace), "Non-Resx");
186XElement withCulture = new XElement(XName.Get("WithCulture", MSBuildNamespace), "false");
198IEnumerable<XElement> itemGroups = project.Elements(XName.Get("PropertyGroup", MSBuildNamespace));
199itemGroups.Elements(XName.Get(propertyName, MSBuildNamespace)).Remove();
207XElement newPropertyGroup = new XElement(XName.Get("PropertyGroup", MSBuildNamespace));
213XElement newElement = new XElement(XName.Get(prop.Name, MSBuildNamespace));