Re: [NAnt-users] Navigating XML documents ...

2009-01-30 Thread Parrish, Ken
. _ -Original Message- From: Mike Frederick [mailto:mikeyf...@att.net] Sent: Thursday, January 29, 2009 12:33 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Navigating XML documents ... It is a little painful, but it is

[NAnt-users] Navigating XML documents ...

2009-01-29 Thread Mike Frederick
It is a little painful, but it is possible. The idea is to be able to address each FileItem node individually. If each Path property is unique across all of the FileItem nodes, then you can use that property to "pick-out" each FileItem node: File:

Re: [NAnt-users] Navigating XML documents ...

2009-01-27 Thread Parrish, Ken
Thanks for the reference to . I have built this code into my standard extension DLL and it seems to be working as advertised. However, there is a part of the problem that I have yet to find a good solution. In the example below, I can generate a list of all the 'Path' attributes, or all the 'Sta

[NAnt-users] Navigating XML documents ...

2009-01-27 Thread Parrish, Ken
Sometime back there were several postings regarding the problem of navigating through a collection of XML nodes in an XML document. I have a Nant task that needs to fetch a collection of XML nodes from a file and iterate over the collection and take action against each node. An example of the con