Re: [Nant-users] Quotation marks in task properties

2005-06-22 Thread Troy Laurin
On 6/22/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi there, > > I need to include quotation marks (" ") in a command line parameter > being passed to an exec command. How should I escape the character in > the command line? > > Cheers, > James. James, You can insert quotes into argumen

Re: [Nant-users] Porting VBScript into C# Script Task

2005-06-22 Thread Robert Smith
Note that the NAnt list parser is modifying the syntax that I had in my construct. It replaced "table[(at symbol)name" with [EMAIL PROTECTED] thinking it was an email address. So the syntax should be xpath="/msi/table[(at symbol)name = 'ISProductConfigurationProperty']/row[td = 'ProductVersion']

Re: [Nant-users] Porting VBScript into C# Script Task

2005-06-22 Thread Robert Smith
Here's what I came up with that worked for changing the product version for an XML Install Shield .ism file...                     file="Test.ism"             xpath="/msi/[EMAIL PROTECTED] = 'ISProductConfigurationProperty']/row[td = 'ProductVersion']/td[3]"             value="${version}"/>    

RE: [Nant-users] if and ifnot tasks

2005-06-22 Thread Felice Vittoria
Ahh ... thanks! -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 1:00 PM To: Felice Vittoria; [EMAIL PROTECTED] Cc: 'Foster, Richard - PAL'; nant-users@lists.sourceforge.net Subject: RE: [Nant-users] if and ifnot tasks > -Original Mess

RE: [Nant-users] Stupid Nant question from a novice

2005-06-22 Thread Felice Vittoria
Joe,   Not a stupid question.   I heard a stupid question is a question not asking.    Anyway, I would do something like this (as an example):     HTH, Felice -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Joseph MierwaSent: Wednesday, Ju

RE: [Nant-users] if and ifnot tasks

2005-06-22 Thread Gert Driesen
> -Original Message- > From: Felice Vittoria [mailto:[EMAIL PROTECTED] > Sent: woensdag 22 juni 2005 19:58 > To: Gert Driesen; [EMAIL PROTECTED] > Cc: Foster, Richard - PAL; nant-users@lists.sourceforge.net > Subject: RE: [Nant-users] if and ifnot tasks > > Here's my original if statem

RE: [Nant-users] if and ifnot tasks

2005-06-22 Thread Felice Vittoria
Here's my original if statement: This is where I'm getting the below error message on. Felice -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Gert Driesen Sent: Wednesday, June 22, 2005 12:49 PM To: Felice Vittoria; [EMAIL PROTECTED] Cc: 'Foster, Richar

[Nant-users] Stupid Nant question from a novice

2005-06-22 Thread Joseph Mierwa
Hi ,   I’ve got what is probably a very stupid question on using expressions in nant. Specifically, if I have a property having a value of 1, what would the _expression_ need to look like to increment it by adding 1 to it?   I’ve been searching for _expression_ usage examples without a

RE: [Nant-users] if and ifnot tasks

2005-06-22 Thread Felice Vittoria
Gert, I'm using the recent nightly build. NAnt 0.85 (Build 0.85.1998.0; nightly; 6/21/2005) Felice -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Gert Driesen Sent: Wednesday, June 22, 2005 12:49 PM To: Felice Vittoria; [EMAIL PROTECTED] Cc: 'Foster, Ric

RE: [Nant-users] if and ifnot tasks

2005-06-22 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Felice Vittoria > Sent: woensdag 22 juni 2005 19:45 > To: [EMAIL PROTECTED]; Gert Driesen > Cc: Foster, Richard - PAL; nant-users@lists.sourceforge.net > Subject: RE: [Nant-users] if and ifnot tas

RE: [Nant-users] if and ifnot tasks

2005-06-22 Thread Felice Vittoria
You know, I tried the example below using the not and when I do I get: 'not False ' is not a valid value for attribute 'test' of . Cannot resolve 'not False ' to boolean value. String was not recognized as a valid Boolean. Is there something I'm doing wrong? I did notice the != expr

RE: [Nant-users] Quotation marks in task properties

2005-06-22 Thread Sandeep
You can escape quotation mark (") with " Regards, Sandeep -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Melissa Kacher Sent: Wednesday, June 22, 2005 9:02 AM To: [EMAIL PROTECTED]; nant-users@lists.sourceforge.net Subject: RE: [Nant-users] Quotation mar

RE: [Nant-users] Quotation marks in task properties

2005-06-22 Thread Melissa Kacher
Don't bother. Put the property in '', and then "" is available to use within the property. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 2:15 AM To: nant-users@lists.sourceforge.net Subject: [Nant-users] Q

RE: [Nant-users] RESGEN and SOLUTIONS - newby confusion.

2005-06-22 Thread Hogg, Russell E.
Title: Message     Thank you for the quick reply, I've tried that though, it's still naming them based on the file name (though the prefix is now there)   Still has ASPX in the file name as well of course, where as the SOLUTION ones don't. that I can handle with an external batch file.   I

Re: [Nant-users] How to - copy files with the names coming out of a list of files (xml)?

2005-06-22 Thread Clayton Harbour
Hi there, if the manifest you are generating is just for your build process I would recomment just using a list of files in plain text. Read up on the and the tasks, they should do what you need. If you need to generate the file as part of your build process you could look up the task as w

RE: [Nant-users] RESGEN and SOLUTIONS - newby confusion.

2005-06-22 Thread Craig Ducharme
Title: RESGEN and SOLUTIONS - newby confusion. Russell,   Use the “dynamicprefix” and “prefix” parameters on the resources element to mimic the behavior of the SOLUTION task.       http://nant.sourceforge.net/release/latest/help/tasks/resgen.html   Regards, Craig

[Nant-users] RESGEN and SOLUTIONS - newby confusion.

2005-06-22 Thread Hogg, Russell E.
Title: RESGEN and SOLUTIONS - newby confusion. Having an issue with RESGEN task versus the SOLUTION task. I found this related thread in the archive: https://sourceforge.net/mailarchive/message.php?msg_id=10331059 But no more. It seems that the RESGEN task is creating the resources

RE: [Nant-users] Using (formerly "Porting VBScript into C# Script Task")

2005-06-22 Thread Selke, Anthony
Here are four examples from the task that modifies our Code Smith configuration file before executing the code generation task. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Hansen Sent: Tuesday, June 21, 2005 11:04 PM To: Jeremy P. Ow

[Nant-users] nunit2report

2005-06-22 Thread Paul Cowan
Has anyone got nunit2report to work?   The following target, completely fails for me:               [Nant-users] Quotation marks in task properties
Hi there, I need to include quotation marks (" ") in a command line parameter being passed to an exec command. How should I escape the character in the command line? Cheers, James. --- SF.Net email is sponsored by: Discover Easy Linux Migratio

[Nant-users] How to - copy files with the names coming out of a list of files (xml)?

Title: How to - copy files with the names coming out of a list of files (xml)? Hi. The following problem. I need to craete as part of my build process a zip-file containing a list of files. I can preapre the listin whatever form I want (xml? For xmlpeek?). How can I go through the list a