Re: [nant-dev] 0.8.2 release + Solution builder question

2003-03-13 Thread Matthew Mastracci
Sure- here's the current source. The project is at the point where it can compile every VS.NET project I've thrown at it. Brant helped me add VB.NET support to the task as well (I haven't tested this). I've even got a very basic web project compiler, but this is not even close to complete. I

RE: [nant-dev] Substring?

2003-03-13 Thread Smith, Eric V.
Maybe we could give it a better name? I'd like to see something that reflects the fact that it is setting properties, like maybe . Eric. > -Original Message- > From: Griffin Caprio [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 13, 2003 10:48 AM > To: Arjen Poutsma; Nant-Developers (

RE: [nant-dev] Substring?

2003-03-13 Thread Gerry Shaw
On Thu, 13 Mar 2003, Arjen Poutsma wrote: > I've already created such a regex task, which sets properties based on named Groups > (). > For example, for the regular expression ^(?\w+):(?\w+), you'd say: > > > > > > results in: > > [echo] Section1 > [echo] 119900 > > Note that you have to u

RE: [nant-dev] Substring?

2003-03-13 Thread Griffin Caprio
Yes, please. That would be great. -Griffin --- Arjen Poutsma <[EMAIL PROTECTED]> wrote: > I've already created such a regex task, which sets > properties based on named Groups (). > For example, for the regular expression > ^(?\w+):(?\w+), you'd say: > > input="Section1:119900"/> > > > > res

RE: [nant-dev] Substring?

2003-03-13 Thread Arjen Poutsma
I've already created such a regex task, which sets properties based on named Groups (). For example, for the regular expression ^(?\w+):(?\w+), you'd say: results in: [echo] Section1 [echo] 119900 Note that you have to use the XML entity < in order to specify a <. I could send it to the li