RE: [nant-dev] Problem with CL task and Filesets...

2003-02-25 Thread Tony B.
an MacLean [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 25, 2003 6:25 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED]; > [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [nant-dev] Problem with CL task and Filesets... > > > Tony, > > the includedirs f

Re: [nant-dev] Problem with CL task and Filesets...

2003-02-25 Thread Ian MacLean
Tony, The directories do get added to the Fileset, but under the "Fileset.Includes" collection. Changing the part of ClTask.cs that does the includes to reference "Fileset.Includes" instead of "Fileset.FileNames" fixes that issue. However, is it the correct, long term fix? Based on what you've st

RE: [nant-dev] Problem with CL task and Filesets...

2003-02-25 Thread Brian Deacon
al Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian MacLean Sent: Tuesday, February 25, 2003 6:53 PM To: Ian MacLean Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [nant-dev] Problem with CL task and Filesets... I just had a thought. The change I

Re: [nant-dev] Problem with CL task and Filesets...

2003-02-25 Thread Ian MacLean
I just had a thought. The change I made means that the following includes statement : will include both files and directories which might break somthing that is only expecting to get files passed to it. we could add filesonly and directoriesdonly attributes on the fileset to prevent this. Or

Re: [nant-dev] Problem with CL task and Filesets...

2003-02-25 Thread Ian MacLean
Tony, the includedirs fileset wasn't working. The fileset scanning code was only supporting files. ie it wasn't even trying to add directories that matched the includes spec. Its working now. I haven't tried running NAnt against Cordbg. What problems are you having ? Is NAnt being built with d