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] 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