> What seems to happen is that the top level directory is ignored or
> identified as an invalid URI if I attempt to compile my sources from the
> same directory as my build file.  I have the following code:
> 
>       <sources basedir="">
>               <includes name="**/*.cs"/>
>       </sources>

A basedir of the current directory should be indicated as ".".  "**/*.cs" means
all .cs files in any subdirectory of the current directory so that wouldn't get
the files in the current directory.  Instead:

        <sources basedir=".">
                <includes name="*.cs" />
                <includes name="**/*.cs"/>
        </sources>



-------------------------------------------------------
This SF.net email is sponsored by:Crypto Challenge is now open! 
Get cracking and register here for some mind boggling fun and 
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
_______________________________________________
Nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to