I have this code:
function setupProject($projectFile) {
[xml]$root = Get-Content $projectFile;
$project = $root.Project;
$beforeBuild = $root.CreateElement("Target", "");
$beforeBuild.SetAttribute("name", "BeforeBuild");
$beforeBuild.RemoveAttribute("xmlns");
$project.AppendChild($beforeBuild);
$root.Save($projectFile);
}
It should add a new <Target name="BeforeBuild" />
to the XML document.
But it also adds an empty xmlns=""
attribute which I don't want.
(It's actually Visual Studio which doesn't like this attribute!)
<Target name="BeforeBuild" xmlns="" />
I've already tried this code:
$beforeBuild.RemoveAttribute("xmlns");
$project.AppendChild($beforeBuild);
$beforeBuild.RemoveAttribute("xmlns");
Check these for possible solutions:
Powershell and csproj
Xml namespace and C# csproj
Here is a workaround from the second solution that worked for OP:
As answered by Michael Kay, the best way to remove this unwanted namespace is creating the new child element in the same namespace as its parent:
Using Javascript
If you are using JS to create an XML doc and are getting blank xmlns attributes on child nodes after declaring
xmlns="XXXX"
on the parent node, use JScreateElementNS(namespace, nodeName)
instead ofcreateElement(nodeName)
.This is assuming you want your child nodes to share the same namespace as the parent. In the below case 'v1','v2', etc. will share the NS of 'data'
It would look something like this:
CORRECT result would look like:
Versus BAD result:
With this solution, you could also declare separate Namespaces for your child nodes. Simply replace the
nameSpace
variable with a different namespace uri string or another set variable.The xmlns="" namespace (un)declaration has been added because your parent element is in a namespace and your child element is not. If you don't want this namespace declaration added, the implication is that you want the child element to be in the same namespace as its parent, and the answer is to put it in this namespace at the time you create the element. That is, change the call CreateElement("Target", "") to specify the correct namespace.
The namespace is an inherent part of the name of each node.Removing namespace means need to recreate the node again. Here is the code, where you can create the child node without the Namespace property.
If you need to create the subchild under your child node, then follow the same style.
The namespace is an inherent part of the name of each node.Removing namespace means need to recreate the node again. Here is the code, where you can create the child node without the Namespace property.
That means that if your main tag contains namespace attribute and your child doesn't have.Hence, the child node will inherit the defaulted namespace attribute from the parent. The best way to remove the namespace attribute is
Basically, this will not remove the namespace attribute from the child note. And in fact you can't.This will hide the attribute as defaulted
If you need to create the subchild under your child node, then follow the same style.