[Nant-users] CVS Update issues

2004-05-17 Thread steve gupta
I am having issues doing a cvs update.   I can't figure out why this isn't working right.   this cmd works fine cvs update -P -r addataaccess_1_0_5 c:\cvs_ams\adsystems_dotnet\Common\AdDataAccess\bin\Release     this part of my script does not      destination="c:\cvs_ams\" 

RE: [Nant-users] Initiating a remote nant build

2004-05-17 Thread Ryan Cromwell
try one of the following -- wmi, scheduled tasks, or Sysinternals psexec. Original Message Follows From: "Jonni Faiga" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: [Nant-users] Initiating a remote nant build Date: Mon, 17 May 2004 13:01:18 +0200 Hi, Any ideas of what is the

Re: [Nant-users] Correct cross-platform way to find nunit.framework.dll

2004-05-17 Thread Rodrigo B. de Oliveira
Thanks, it works like a charm! - Original Message - From: "Gert Driesen" <[EMAIL PROTECTED]> To: "Rodrigo B. de Oliveira" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, May 17, 2004 3:12 AM Subject: Re: [Nant-users] Correct cross-platform way to find nunit.framework.dll > Try th

[Nant-users] Re: CVS Update Issues

2004-05-17 Thread steve gupta
I deleted out the directory and modified the cvs repository file, re checked it out and then the nant script worked! --- This SF.Net email is sponsored by: SourceForge.net Broadband Sign-up now for SourceForge Broadband and get the fastest 6.0

[Nant-users] cvs update issues

2004-05-17 Thread steve gupta
I am having issues doing a cvs update.   I can't figure out why this isn't working right.   this cmd works fine cvs update -P -r addataaccess_1_0_5 c:\cvs_ams\adsystems_dotnet\Common\AdDataAccess\bin\Release     this part of my script does not      destination="c:\cvs_ams\" 

Re: [Nant-users] library of various .build files

2004-05-17 Thread Ian MacLean
There isn't one as far as I know but its a great idea. You could probably start by just adding pages to the existing wiki. Its maybe not the best interface for uploading samples but its there now and it is editable by anyone. Ian Jonni Faiga wrote: Hi, Is there a set of example .build files of

Re: [Nant-users] if property = value

2004-05-17 Thread Ian MacLean
Jonni, If you're using a recent nightly build the following will do what you are after: or note that the braces go around the whole expression not just the property part. if you really want to compare your property as a number rather than a string then the following may be more appropriate:

[Nant-users] library of various .build files

2004-05-17 Thread Jonni Faiga
Hi,   Is there a set of example .build files of various uses, that is downloadable somewhere? (similar to http://www.regexlib.com/ for regular expressions)   If not, anyone keen to host a section (eg on http://nant.sourceforge.net/wiki/) where the public can upload various .build files to?  

RE: [Nant-users] Initiating a remote nant build

2004-05-17 Thread Nicklas Norling
Title: Message You could try CCNet and specifically CCTray. CCNet is a bless for builders of all kinds. /Nicke -Original Message-From: Jonni Faiga [mailto:[EMAIL PROTECTED] Sent: den 17 maj 2004 13:01To: [EMAIL PROTECTED]Subject: [Nant-users] Initiating a remote nant bui

[Nant-users] if property = value

2004-05-17 Thread Jonni Faiga
Hi,   How do you check if a property is a certain value? The if... propertytrue & propertyexists doesnt seem to cater for this.   I would like something like:   if (${abc}=123)... eg or   Jonni

[Nant-users] Initiating a remote nant build

2004-05-17 Thread Jonni Faiga
Hi,   Any ideas of what is the cleanest way to initiate a nant.build file on that runs on a remote machine after a local machine has successfully finished a .build file? I am using Window2000 on both machines, so rexec is ruled out.   I'm currently planning using rcp with a remote filewatche