Re: [NAnt-users] Nant task for Microsoft VSTS Unit testing?

2008-06-11 Thread Tony Selke
Sorry, Bob's right. MSBuild can do the unit tests. It's msi installer projects that require devenv.exe. My bad. :-) Bob Archer wrote: > If you run MSBuild via nant, and your sets are part of the configuration > that you are building, the tests will be run by MSBuild. > > > > BOb > > >

Re: [NAnt-users] Nant task for Microsoft VSTS Unit testing?

2008-06-11 Thread Bob Archer
If you run MSBuild via nant, and your sets are part of the configuration that you are building, the tests will be run by MSBuild. BOb From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ?? Sent: Wednesday, June 11, 2008 1:31 PM To: n

Re: [NAnt-users] NANT task to rename a directory?

2007-10-01 Thread Alan Guedeney
Nope. Tried it. Had to create a custom task. Subject: RE: [NAnt-users] NANT task to rename a directory?Date: Mon, 1 Oct 2007 09:55:10 -0400From: [EMAIL PROTECTED]: [EMAIL PROTECTED]; nant-users@lists.sourceforge.net You should be able to use the move task to do this. BOb From

Re: [NAnt-users] NANT task to rename a directory?

2007-10-01 Thread Bob Archer
You should be able to use the move task to do this. BOb From: [EMAIL PROTECTED] on behalf of Alan Guedeney Sent: Fri 9/28/2007 2:35 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] NANT task to rename a directory? Anyone have a simple and ez way

Re: [NAnt-users] NANT task to rename a directory?

2007-09-28 Thread wangmeng
MoveFile The MoveFile function moves an existing file or a directory, including its children. To specify how to move the file, use the MoveFileEx function. BOOL MoveFile( LPCTSTR lpExistingFileName, LPCTSTR lpNewFileName );   === 2007-9-29 2:35 08:42 Alan Guedeney 您在来信

Re: [Nant-users] Nant task Rebuild Solution.

2005-08-10 Thread Matt Trentini
Alternatively, if you have Visual Studio installed you can use an exec task to call devenv with the 'clean' option before building. Something like this: It would be nice to have a 'clean' attribute for the solution task though... Cheers, Matt On 8/10/05, Tim Posey <[EMAIL PROTECTED]> wrote:

RE: [Nant-users] Nant task Rebuild Solution.

2005-08-09 Thread Tim Posey
Xuhui,   You might want to create a ‘clean’ task to run before performing your task.  This task should delete the bin/obj folders (if it’s a Visual Studio project) containing all of the .exe’s, .dll’s, .obj’s, and other compiled assets that you may have.  This will then force a comp

RE: [Nant-users] NAnt task on web project fails

2004-09-28 Thread Matt Hulse
TIA,   I have used NAnt with much success to build web projects over the last 6 months.  Could you include your .build file so we could look at it?     Matt Hulse [EMAIL PROTECTED]     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Shikari Shambu Sent: Tuesd

Re: [Nant-users] nant task

2004-05-20 Thread Martin Gainty
? - Original Message - From: Bob Archer To: Martin Gainty ; [EMAIL PROTECTED] Sent: Thursday, May 20, 2004 9:47 AM Subject: RE: [Nant-users] nant task OK…   I guess you misunderstood my question… let me try again…   I have two build files…   Evolution.build

RE: [Nant-users] nant task

2004-05-20 Thread Bob Archer
PROTECTED] Subject: Re: [Nant-users] nant task   Sure here is an example- NAnt.exe -logger:NAnt.Core.XmlLogger -logfile:buildlog.xml HTH, -M - Original Message - From: Bob Archer To: [EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 5:55 PM Subject

Re: [Nant-users] nant task

2004-05-19 Thread Martin Gainty
Sure here is an example- NAnt.exe -logger:NAnt.Core.XmlLogger -logfile:buildlog.xml HTH, -M - Original Message - From: Bob Archer To: [EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 5:55 PM Subject: [Nant-users] nant task If I use the nant task, with t

RE: [Nant-users] NAnt Task Documentation

2004-01-16 Thread Cromwell, Ryan
Stable release(0.84): http://nant.sourceforge.net/help/index.html Latest Nightly (01.04.2004): http://nant.sourceforge.net/nightly/help/index.html Click on Task References for the core tasks. for your specific concern, use -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTEC

RE: [Nant-users] NAnt Task Documentation

2004-01-16 Thread Landes Eric (RBNA/CIT4.2)
try http://nant.sourceforge.net/help/tasks/index.html . I think you the nant task. Eric L. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Billy Bacon Sent: Friday, January 16, 2004 3:28 PM To: [EMAIL PROTECTED] Subject: [Nant-users] NAnt Task Documentation

Re: [Nant-users] NAnt Task Documentation

2004-01-16 Thread Ian MacLean
in NAnt its just see http://nant.sourceforge.net/help/tasks/call.html Ian For instance, I'm trying to using the task and that's not working. I've also tried using and it didn't recognize that either. Thanks in advance. --- The SF.Net ema

Re: [Nant-users] NAnt Task Documentation

2004-01-16 Thread Ian MacLean
http://nant.sourceforge.net/help/tasks/index.html this is linked off the nant home page. It also comes as part of the nant installation. Ian Billy Bacon wrote: Could someone point me to the NAnt docs which provide the Core Tasks that are available. I know that NAnt is very similar to Ant but t

RE: [Nant-users] nant Task with inheritall

2003-08-28 Thread Daya Sharma
PROTECTED] Behalf Of Foley, Cash Sent: Thursday, August 28, 2003 10:12 AM To: [EMAIL PROTECTED] Subject: RE: [Nant-users] nant Task with inheritall I don't think I clearly stated my problem and question. 1) I need a sub-build to set properties that will be available to the calling build. 2)

RE: [Nant-users] nant Task with inheritall

2003-08-28 Thread Foley, Cash
I don't think I clearly stated my problem and question. 1) I need a sub-build to set properties that will be available to the calling build. 2) Using inheritall on the nant task does not seem to work. 3) Does anyone have any suggestions on how to make this work? I'm thinking my example is clea

RE: [Nant-users] nant task and basedir property

2002-12-24 Thread Darren Syzling
To reply to my own message (again)...which probably also resolves my other issue regarding the include task. It seems the include task is relative to basedir. If you don't specify the basedir property the default is to use the directory of the current build file (thanks to the nant-users archive)