allooo,

the fileset docs describe "includes" and "excludes" as "comma-separated
list of patterns of files..."

so you'd expect that you could do this:

        <fileset basedir="d:\utils\" >
          <includes name="*.bat, *.exe" />
        </items>

but you can't.   the above returns an empty list.  you need to do this
to get results:

        <fileset basedir="d:\utils\" >
          <includes name="*.bat" />
          <includes name="*.exe" />
        </items>

it looks like the docs come from Ant and the feature wasn't implemented
in NAnt...


____________
Jean Rajotte
+1 416-574-1767



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to