[nant-dev] another feature request, task

2004-06-04 Thread John Cole
Here is another request: With the regular expression task, it would be nice to have control over the multiline and single line properties, so that your regular expressions could work against a file and not just a single line. Thanks, John Cole

[nant-dev] feature request for task

2004-06-04 Thread John Cole
In the task the dilim parameter only accepts a single character. It would be VERY helpful if this took more than a character, so you could use more complex delimiters to prevent data and delimiters from getting mixed up. for example it would be nice to have the following work: Some o

Re: [nant-dev] New commandline option for extension assemblies

2004-06-04 Thread Sascha Andres
Hi, * Gert Driesen wrote on 04.06.2004 (15:43): >[intend] >For now, I named the new option /extension (short name /ext) : > > -ext[ension]:load NAnt extensions from the specified >assembly > > Is that ok, or does anybody have a better proposal ? That's p

[nant-dev] Re: [Nant-users] nant 0.85

2004-06-04 Thread Gert Driesen
Matt, Better send it to Ian ([EMAIL PROTECTED]), Scott ([EMAIL PROTECTED]), Jarek ([EMAIL PROTECTED]) and myself. Thanks, Gert - Original Message - From: "Baldree Matt" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]> Cc: "Dahlman Roger" <[EMAIL PROTECTED]>; <[EMAIL PROTECTE

[nant-dev] New commandline option for extension assemblies

2004-06-04 Thread Gert Driesen
Hi,   I'd like to add a new command line option that would allow users to specifiy assemblies from which to load NAnt extensions (or whatver you want to call it) from the command line.   This would also allow users to load third party build loggers or build listeners (right now, we assume tha

Re: [nant-dev] FileSet attribute

2004-06-04 Thread Gert Driesen
Sascha, You should use the BuildElement attribute : [BuildElement("binaries")] public FileSet binaries { get { return _binaryFileset; } set { _binaryFileset = value; } } Hope this helps, Gert - Original Message - From: "Sascha Andres" <[EMAIL PROTECTED]

[nant-dev] FileSet attribute

2004-06-04 Thread Sascha Andres
Hi, for my ftp tasks I try to introduce two fileset attributes, but had no real success until now. Here's how I tried: // variable: private FileSet _binaryFileset = new FileSet(); // property: [TaskAttribute("binaries")] public FileSet binaries { get { return _binaryFileset;

[nant-dev] Re: [Nant-users] nant 0.85

2004-06-04 Thread Gert Driesen
- Original Message - From: "Baldree Matt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Dahlman Roger" <[EMAIL PROTECTED]> Sent: Friday, June 04, 2004 3:03 PM Subject: RE: [Nant-users] nant 0.85 > Gert, > > Roger has finished implementing the filter chain. Are you guys still > inter

Re: [nant-dev] ftp task

2004-06-04 Thread Sascha Andres
Hi, * Sascha Andres wrote on 03.06.2004 (19:24): > I splitted the ftp into ftpdown and ftpup, that made the > start easier. And IMHO two tasks are easier than one task > with a switch. Now I make a proposal to enhance the tasks and to make them one. My proposal would be to use two filesets (one fo