[Nant-users] Use copy task to change file name to include nant property

2005-02-18 Thread Gregory_D_Sostaric
I want one of my targets to take a file "test.exe" and change it to include my nant property and create the new file test123.exe The copy task complains when using the variable, is there another way to do this? --- SF email is sponsored by

[Nant-users] are there any good license task examples

2005-02-18 Thread Franklin, Randy
Hello,   I’d like to start deploying from my nant builds, but I can’t right now, as I haven’t figured out how to make the license task work, yet. Are there any good examples out on the web anywhere that really explain how to do all of that?   Thanks,   Randy M. Franklin, Jr. Database

Re: [Nant-users] Merge modules (MSM task)

2005-02-18 Thread Jim Geurts
hrm... weird. I had to add the ModuleConfiguration table to the template. It's checked in and available from CVS now. That should fix your problem Thanks Jim On Fri, 18 Feb 2005 10:07:19 -0500, Foster, Richard - PAL <[EMAIL PROTECTED]> wrote: > Since there seems to be some discussion about M

RE: [Nant-users] Can't compare longs and ints???

2005-02-18 Thread John Hardin
On Thu, 2005-02-17 at 22:56, Gert Driesen wrote: > You should be using NAnt 0.85 RC2. ...whoopsie! I updated the build server but not my desktop... Thanks. {slinks off} -- John Hardin Development and Technology group (Seattle) CRS Retail Systems, Inc. 3400 188th Street SW, Suite 185 Lynnwood, W

[Nant-users] Merge modules (MSM task)

2005-02-18 Thread Foster, Richard - PAL
Since there seems to be some discussion about MSI and MSM tasks in NantContrib I am creating a merge module that needs to have some configuration settings. Using the element causes an error to be thrown unless I also include a element to specify the format of the ModuleConfiguration table.

RE: [Nant-users] Problem with property evaluation

2005-02-18 Thread Bill.Martin
If I remember correctly, the whole line will be evaluated, so you will get an error, because the message is evaluated, but not executed if the if attribute is false. I think what you need for this scenario is: Cheers, Bill -Original Message- From: T.G. Mutato [mailto:[EM

RE: [Nant-users] Problem with property evaluation

2005-02-18 Thread Troy Laurin
> Original Message >From: [EMAIL PROTECTED] > >Check out this code fragment: > > > > >The echo statement shouldn't happen if property2 doesn't exist; >however, the following error happens: > >Property evaluation failed. >Expression: property2 is ${property2} >

Re: [Nant-users] Checking fileset contents?

2005-02-18 Thread Ian MacLean
Troy Laurin wrote: Original Message From: [EMAIL PROTECTED] [snip] OK - I've whipped up a couple of custom functions using the script task to inspect the contents of a fileset. Heres the script : [snip] [Function("to-string")] public string Contains( string fsetID ) { [snip]