[NAnt-users] Hello People

2006-11-14 Thread Kumar .S
I was trying to compile the VBP using Nant. and I was able to compile it using the VB6 task. Now, I want to force the compilation process. How can I do that. I was thinking its the same as the .net applications. But its not. When I tried to delete the dll or exe and trying to compile using the Nant

[NAnt-users] How to Automate build numbering process?

2006-11-14 Thread ChandraSekhar Medidi
Hi everyone,   We are using NAnt scripts to do our daily builds. right now we are giving build numbers manually through command line in increments of 1 for every successive build. How to automate the Build numbering process. everytime buildscript should automatically increment the previous build nu

Re: [NAnt-users] [nant-dev] NUnit2 task doubt. How can I run ALL test assemblies in the fileset with task-global fail on error?

2006-11-14 Thread Gary Feldman
Alexey 0 Moudrick wrote: > Hello, nant-developers, I've redirected this to nant-users, which is more appropriate. > > > > > failonerror="${nunit2.failonerror}"> >outputdir="${this.branchPath}${this.testsDir }Results" /> > > > > > > >

Re: [NAnt-users] passing property as argument of function

2006-11-14 Thread Vrata Cermak
Using Version without anything really helped, thanks a lot !!! - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download I

Re: [NAnt-users] passing property as argument of function

2006-11-14 Thread William_Martin
Basically, everything inside a ${ ... } block is evaluated, so there's no need for the second nested block.  Try: Cheers, Bill From "Vrata Cermak" <[EMAIL PROTECTED]>@lists.sourceforge.net Sent by: [EMAIL PROTECTED] 14/11/2006 14:35 To nant-users@lists.sourceforge.net cc

Re: [NAnt-users] passing property as argument of function

2006-11-14 Thread Evans, Jonathan (2)
  Use Version on its own instead of '${Version}' and it should work - it is already enclosed in braces, so it is already being treated as a variable. Jonathan Evans From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Vrata CermakSent: Tuesday, November 14, 2006 2:36 PMTo: na

[NAnt-users] passing property as argument of function

2006-11-14 Thread Vrata Cermak
Could anyone tell me how to pass property value as argument of function? In this example, i have property "Version" which should be third argument of function "set_value_to_file" but function gets "${Version}" string instead of property value. Vrata48 --

Re: [NAnt-users] passing property as argument of function

2006-11-14 Thread Arnette, Bill
Once you have opened the ${} _expression_, you don't use it to reference properties or functions any more.  So in the above, your function is passing two strings, "C:\Autotests\..."  and "version" and the value of the Version property.   From: [EMAIL PROTECTED] [mailto:[EMAIL PR