Re: [nant-dev] FileSet attribute

2004-06-08 Thread Sascha Andres
Hi, * Gert Driesen wrote on 07.06.2004 (12:37): Are you using a very recent version of NAnt, as the include element was only recently added. You might want to try the includes element : Is 25.05.2005 recent enough? But I tried (and got deprecated messages). Nothing changed. I've overseen that

Re: [nant-dev] FileSet attribute

2004-06-07 Thread Gert Driesen
/ /binaries /ftpdown Gert - Original Message - From: Sascha Andres [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 06, 2004 12:01 PM Subject: Re: [nant-dev] FileSet attribute Hi, currently my code looks like this: // the binaries property [BuildElement(binaries)] public

Re: [nant-dev] FileSet attribute

2004-06-06 Thread Sascha Andres
Hi, currently my code looks like this: // the binaries property [BuildElement(binaries)] public FileSet binaries { get { return _binaryFileset; } set { _binaryFileset = value; } } // BinaryFileset The usage: if (null != _binaryFileset) {

[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;