Giuseppe Greco wrote:



This can be even used with recently added "named filesets" feature. You
would define a (single) fileset that would keep all your *.build files and
invoke various targets on it using simple one-liner without the need of a
gateway file trick.

I don't remember the exact syntax for named filesets, but the concept is:

<fileset id="childrenBuildFiles">
   <includes file="**/*.build" />
</fileset>

<target name="build">
   <nant target="build" fileset="childrenBuildFiles" />
</target>




Yes, the syntax is correct. I'll introduce an example ASAP -- fileset
references are available since last Tuesday...


actually it should be

<nant target="build"> <fileset refid="childrenBuildFiles" />
</nant>
but its a smll point.
Ian






-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to