This was posted to the users group originally

sorry :)

Rory

---------- Forwarded message ----------
From: Rory Becker <[EMAIL PROTECTED]>
Date: Aug 25, 2005 12:48 PM
Subject: Filesets referencing filesets ?
To: nantList <nant-users@lists.sourceforge.net>


I would like to alter fileset so that it could reference multiple
other filesets but I am not sure where to start.

The syntax has been stolen from a post I read
http://www.mail-archive.com/nant-developers@lists.sourceforge.net/msg03232.html

and is as follows

<fileset id="Group1">
      <include name="File1.dll" />
      <include name="File2.dll" />
</fileset>
<fileset id="Group2">
      <include name="File3.dll" />
      <include name="File4.dll" />
</fileset>
<fileset>
      <includeFileset refid="Group1" />
      <includeFileset refid="Group2" />
</fileset>

I have found the fileset Class in Nant.Core and I figured I needed to
determine how to use the refid syntax.

So I looked for another class that already does this.

The CopyTask seems to provide this but I cannot find anything in the
source to indicate how this is handled.

Can anyone help?

Thanks

Rory


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to