[NAnt-users] any way to use a pre-defined fileset in foreach?

2007-06-04 Thread Mark Modrall
Hi... I was just trying to use a pre-defined fileset in foreach but haven't been able to come up with the right incantation. I tried fileset id=foo include.../ include.../ /fileset foreach item=File property=filename in itemsfileset refid=svnchg//items /in

Re: [NAnt-users] any way to use a pre-defined fileset in foreach?

2007-06-04 Thread William_Martin
Haven't checked this, but logically if items is a fileset, then you should be able to use: foreach item=”File” property=”filename” in items refid=”svnchg”/ /in do echo message=”${filename}”/ /do /foreach HTH, Bill From Mark Modrall [EMAIL