[Nant-users] NUnit2Report

2005-07-20 Thread Blagassie
I am working on a large project C# which contains numerous assemblies.  I am successfully able to process the Nunits and generate xml result files.  Has anyone figured out a way to get the NUnit2Report task to handle processing multiple assemblies.  The task creates the necessary html f

RE: [Nant-users] Expression string escape sequence

2005-07-20 Thread Stephen Tunney
' is probably what you want. Cheers, Stephen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Ludlow Sent: Wednesday, July 20, 2005 12:43 PM To: nant-users@lists.sourceforge.net Subject: [Nant-users] Expression string escape sequence Hi, I was wonde

[Nant-users] Expression string escape sequence

2005-07-20 Thread John Ludlow
Hi, I was wondering if there's any way of passing a string with single quotes in to a custom function. Single quotes are the string delimiters for expressions, so you can't just dump them in there. If not, then I think there needs to be an escape sequence. I think '' would work ok for a single

Re: [Nant-users] How to avoid recompilation of code.

2005-07-20 Thread Troy Laurin
> Hello Friends, > > In my NAnt script, I am calling one child Nant script which generate one > dll(lets say abc.dll) now I don't want to create/recompile it every time. > > Shall i go with > 1. file::get-last-access-time > 2. file::up-to-date > > or is there any otherway to solve th

[Nant-users] How to avoid recompilation of code.

2005-07-20 Thread Sachin Shriram Gedam
  Hello Friends, In my NAnt script, I am calling one child Nant script which generate one dll(lets say abc.dll) now I don't want to create/recompile it every time. Shall i go with 1. file::get-last-access-time 2. file::up-to-date or is there any otherway to solve this problem ? help me for