When is a <fileset> "executed"? Suppose I have the following build file:

<project name="test" default="test">
  <fileset id="test.fileset">
    <include name="*.*" />
  </fileset>
  <target name="test">
    <delete>
      <fileset refid="test.fileset" />
    </delete>
  </target>
</project>

Would the <fileset> generate the file list at the point of declaration
or the point of execution (in the <delete> task)?


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to