Hi, 
I'm using Nant nightly 3/05/2005

I have a filesset using Asis="true" that is not including all items.
If I run the following build script 

<?xml version="1.0" encoding="utf-8" ?>
<project name="TEST" default="test" description="test">
  <target name="test">
    <foreach item="File" property='curr'>
      <in>
        <items>
          <include name="ABC" asis="true" />
          <include name="Spikes.Utilities.Installers" asis="true" />
          <include name="DEF" asis="true" />
        </items>
      </in>
      <do>
        <echo message="${curr}" />
      </do>
    </foreach>
  </target>
</project>

I have the following output:
----------------------------
NAnt 0.85 (Build 0.85.1949.0; nightly; 3/05/2005)
Copyright (C) 2001-2005 Gerry Shaw
http://nant.sourceforge.net

Buildfile: file:///D:/Dev/Spikes/utilities/framework/test.build
Target framework: Microsoft .NET Framework 1.1
Target(s) specified: test


test:

     [echo] ABC
     [echo] DEF

BUILD SUCCEEDED
----------------------------------

I'm expecting   
   
[echo] ABC
[echo] Spikes.Utilities.Installers
[echo] DEF




This used to work in previous version.

Any idea if I'm doing something wrong?

Thanks in advance 
Yves Lorphelin






-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
_______________________________________________
Nant-users mailing list
Nant-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to