tags:

views:

159

answers:

1

During a build process using Nant, how to update an xml file, for adding new nodes. I wish to do this by using existing Nant/NantContrib tasks

+1  A: 

You might use <xmlpoke> for that.

But I would suggest, you do yourself a favor and use <script> to write xml file modification logic in the language of your choice.

The Chairman