Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.