I am using XmlUpdate from MSBuild Community tasks:
<MyXmlToSet><myNode><myInnerNode>my value</myInnerNode></myNode><MyXmlToSet>
<XmlUpdate XmlFileName="myoutput.xml.config" Xpath="//myRoot/myConfigNode" Value="$(MyXmlToSet)" />
and when I look at the resulting file, myConfigNode has all inner XML tags with <> encoded to < >
and the inner node of myConfigNode also has
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
which I do not need.
How can I make XmlUpdate to insert the contents of MyXmlToSet into myConfigNode without encoding the <> and without that namespace?