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
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
when NANT contains a csc project with the following lines:
...
If the file class1.cs file is not present on disk, no error message is
generated. The project will compile with only class2.cs. The absence of
class1 will only be noticed when another project that references