Re: [Nant-users] Testing if a directory exists.

2004-09-10 Thread Jaroslaw Kowalski
Use test="${directory::exists(build.dir)}". Properties inside expressions can be accessed directly without any decoration. Jarek - Original Message - From: "Burton, Kevin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 11, 2004 12:27 AM Subject: [Nant-users] Testing

Re: [Nant-users] Testing if a directory exists.

2004-09-10 Thread Gert Driesen
Kevin, You don't need to surround property names with braces in expressions : Hope this helps, Gert - Original Message - From: "Burton, Kevin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 11, 2004 12:27 AM Subject: [Nant-users] Testing if

Re: [Nant-users] reference for Microsoft assemblies...?

2004-09-10 Thread Ian MacLean
Richard Sbarro wrote: Kevin, Thanks for the tip! Using: does appear to work with the 9-8 nightly build. However, using to reference all Microsoft framework assemblies does not. This is by design. If there is a bare file in the include list ( ie no wildcards ) then the compiler tasks will look f

Re: [Nant-users] Last attempt: Trying again to report a nant bug

2004-09-10 Thread Gert Driesen
- Original Message - From: "David Thielen" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, September 10, 2004 5:29 PM Subject: RE: [Nant-users] Last attempt: Trying again to report a nant bug Hello; I'm sorry - I didn't get the reply yeste

[Nant-users] Licenses.licx and ActiveReports solution

2004-09-10 Thread Dennison, Oran
I sent this to the list a couple days ago, but my organization's email filter blocked it because it had the word "error" in the subject. -Original Message- From: Dennison, Oran Sent: Tuesday, September 07, 2004 7:29 PM To: '[EMAIL PROTECTED]' Subject: Re: [Nant-users] Error with license.l

Re: [Nant-users] reference for Microsoft assemblies...?

2004-09-10 Thread Richard Sbarro
Kevin, Thanks for the tip! Using: does appear to work with the 9-8 nightly build. However, using to reference all Microsoft framework assemblies does not. -Rich Kevin Williams wrote: I haven't spent much time with the 0.85 builds, but with 0.84 I've been able to use: and it seems to pick the

RE: [Nant-users] Last attempt: Trying again to report a nant bug

2004-09-10 Thread David Thielen
Hello; I'm sorry - I didn't get the reply yesterday. I understand that it will be awhile until it is addressed. I just wanted to make sure you got it. Thanks - dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gert Driesen Sent: Friday, September 10

Re: [Nant-users] text search and replace - Email found in subject

2004-09-10 Thread Felice Vittoria
Thanks .. that worked :) -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Friday, September 10, 2004 9:54 AM To: Felice Vittoria; Nant-Users (E-mail) Subject: [SPAM] - Re: [Nant-users] text search and replace - Email found in subject Felice, If you're using the 0.

Re: [Nant-users] passing command-line argument while compiling build

2004-09-10 Thread Alex Hildyard
Hi Srini,   You can use a script block to execute arbitrary code; for example, the code below prompts for user input, and then stores the result in a property. You can then refer to this property in the "tofile" attribute of the task to get the effect you want.   Regards,   Alex        

Re: [Nant-users] nightly builds

2004-09-10 Thread Gert Driesen
Hi Felice, I was planning to make an announcement on this sooner or later, but that's no longer necessary now I guess ;-) We've indeed split up the nightly build (and probably the release packages too) in a separate source and binary distribution package. Normal users should download the binary

Re: [Nant-users] VDProjConverter

2004-09-10 Thread James Geurts
Hey William, I wrote the vdproj converter project. Currently my website is down due to not having an internet connection for the last day or so... That should be resolved this weekend or early next week. I would love to see that code get added to the solution task, but I for one have not even lo

[Nant-users] nightly builds

2004-09-10 Thread Felice Vittoria
Hello all, Is there going to be a new way of how the nightly builds are delivered? The reason why I ask is because I noticed that the builds in this format nant-0.85-MMDD.zip suddenly disappeared. Is the new format going to be: -MM-DD-0.85\ nant-0.85.xsd nant-bin.zi

[Nant-users] VDProjConverter

2004-09-10 Thread Miller Jr., William J. \(BIT\)
Hi All, I'm looking for VDProjConverter and the links provided return errors. I've even tried to access the www.biasecurities.com site and I get a blank page. Is there any hope of *.vdproj support being added to the solution task? Thanks! Bill Miller *: [EMAIL PROTECTED]

Re: [Nant-users] text search and replace

2004-09-10 Thread Rodrigo B. de Oliveira
I can send you the source code for a very simple but effective task we developed here: http://${targetserver}/images/"; /> http://${targetserver}/css/player.css"; /

[Nant-users] NAnt calling NAnt - Resolved

2004-09-10 Thread Merrill Cornish
Errors on top of errors [sigh...] We've now found that the immediate reason the example I sent you is failing is that exec's commandline attribute string was broken across lines. (OK, I'm a neat freak, even if I'm not too bright sometimes.) That worker script formatting detail caused the new

Re: [Nant-users] text search and replace - Email found in subject

2004-09-10 Thread Felice Vittoria
Rodrigo, Thank you for the offer but I won't need it. The replacestring task from filterchains (nant 0.85) worked for me. Felice -Original Message- From: Rodrigo B. de Oliveira [mailto:[EMAIL PROTECTED] Sent: Friday, September 10, 2004 12:07 PM To: Felice Vittoria Cc: Nant-Users (E-m

[Nant-users] NAnt calling NAnt - More Info

2004-09-10 Thread Merrill Cornish
For what it's worth, here is the trivial NAnt script: This is created on the fly to carry variables to the CC.NET test box for use by QATest.build --- This SF

[Nant-users] NAnt calling NAnt

2004-09-10 Thread Merrill Cornish
We have a big worker NAnt build script that has been, and still is, working just fine when called from the command line directly. (I'm running the 9/8/2004 nightly build.) For various reasons, we have a second trivial, dynamically generated NAnt script that calls the big worker script. And unt

RE: [Nant-users] passing command-line argument while compiling build

2004-09-10 Thread Felice Vittoria
Sreeni,   Here's the link to the property task:  http://nant.sourceforge.net/nightly/help/tasks/property.html   You would basically add  overwrite="false" to any command-line parameters you plan to pass in.      So, you could have something like this:   .           HTH, Felice

RE: [Nant-users] Last attempt: Trying again to report a nant bug

2004-09-10 Thread jim.holmes
Gert replied back to the list and your e-mail address just yesterday:   David, I just haven't had time to look into this yet. If you solution includes a j# project, then its normal that it fails as the task does not support J# yet. Gert -Original Message-From: [EMAIL PROTECTE

Re: [Nant-users] Last attempt: Trying again to report a nant bug

2004-09-10 Thread Gert Driesen
David, If you would've payed better attention, you would've noticed that I did reply to your email saying that I did not have time straight away, but that I would look into it later (this week or so). I also mentioned that the task does not support Visual J#. We are all volunteers and all have

RE: [Nant-users] Build process unification

2004-09-10 Thread Clayton Harbour
Title: Message Hi Jarek,   I think a set of standards for NAnt build files would be awesome.  The documentation would be a great driver for a GUI tool, and although there are a number of examples in the NAnt source files but the addition of a GUI designer would probably help out a lot with 

[Nant-users] Last attempt: Trying again to report a nant bug

2004-09-10 Thread David Thielen
Hello;   I am trying for the 8th (and last) time to report a nant bug. I like nant but if I can’t get anyone to take this bug report then I will never again create a simple reproduction of a bug for nant as it is of no use.   If you are an nant developer and you get this – please email

Re: [Nant-users] text search and replace

2004-09-10 Thread Gert Driesen
Felice, If you're using the 0.85 nightly builds, you can use a with the task. Gert - Original Message - From: "Felice Vittoria" <[EMAIL PROTECTED]> To: "Nant-Users (E-mail)" <[EMAIL PROTECTED]> Sent: Friday, September 10, 2004 3:57 PM Subject: [Nant-users] text search and replace He

Re: [Nant-users] Error whlile doing a vssget - Email found in subject

2004-09-10 Thread Felice Vittoria
Gert, I know. I was just saying that *if* you copy the nantcontrib binaries into the nant bin folder that you don't need to use . Felice -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Friday, September 10, 2004 9:43 AM To: Felice Vittoria; [EMAIL PROTECTED]; [EMA

Re: [Nant-users] Error whlile doing a vssget

2004-09-10 Thread Gert Driesen
Felice, I'd actually advise against copying the NantContrib binaries to the nant bin directory. Using is actually better, at least in my opinion. Gert - Original Message - From: "Felice Vittoria" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, September 1

RE: [Nant-users] Error whlile doing a vssget

2004-09-10 Thread Felice Vittoria
Parikshit, *If* you copy the nantcontrib binaries into the nant\bin folder, then you don't need to do a . Try removing your task from your script and see if that works. Felice -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Thur

[Nant-users] text search and replace

2004-09-10 Thread Felice Vittoria
Hello, Has anyone performed a text file search and replace using Nant? If so, how can this be accomplished? Thanks, Felice --- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini

[Nant-users] passing command-line argument while compiling build

2004-09-10 Thread Sreeni
Nant Users,   I need a urgent help. I'm writing a build script(nant) for a ASP.Net project. I need to output the build based on a user input. Example Staging/Production. If user chooses Staging, then the build should be written to C:\Staging, If user chooses Production, then the build should