Re: [NAnt-users] Walking directory trees for .build files ...

2008-02-21 Thread Bob Archer
Just use the foreach task with a file set pattern that will only include .build files. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ken Parrish Sent: Thursday, February 21, 2008 10:14 AM To: nant-users@lists.sourceforge.net Subject:

Re: [NAnt-users] Walking directory trees for .build files ...

2008-02-21 Thread William_Martin
This is pretty easy to accomplish by iterating a fileset created using **/*.build to list all the build files in your sub-directory structure and then execute the task on each one with the necessary parameters. It does however sound a bit dangerous unless all your assemblies are (and always wi