RE: [Nant-users] missing source file does not break the build

2003-02-25 Thread Hearn, Bruce
To: Hearn, Bruce Cc: [EMAIL PROTECTED] Subject: Re: [Nant-users] missing source file does not break the build Bruce, By default the fileset element only includes files that exist. That is to support wildcard matching. So if you had class1.cs wouldn't match either. However to get the r

Re: [Nant-users] missing source file does not break the build

2003-02-24 Thread Ian MacLean
Bruce, By default the fileset element only includes files that exist. That is to support wildcard matching. So if you had class1.cs wouldn't match either. However to get the result you're after use the asis attribute. so: will pass class1.cs thru to the compiler without