RE: [Nant-users] NAnt script and Xml command file integration

2005-05-06 Thread Bruce Kinchin
Hi Sandeep, And yet another variant :) We farm out our Nunit tests across multiple PCs to reduce the time for integration. We have one config file (xml) that specifies the tests to run on each PC. The nant script is then run on each PC and using the computer name as an identifier, we use XSL to

RE: [Nant-users] NAnt script and Xml command file integration

2005-05-05 Thread Bevan Arps
Hi Sandeep. I've done something similar to what you describe - but entirely in NAnt. No external configuration file. I can't post my .build file, but it worked something like this: First, create targets that set properties to describe your target environments. In my case, I had these targets:

Re: [Nant-users] NAnt script and Xml command file integration

2005-05-05 Thread Gary Feldman
Sandeep wrote: I need to deploy my application to various environments using a central build server. I have created sample xml that list the files/folders to be copied in each environment. I want to call this XML file though NAnt and use Nant script to run copy task based on the folders specif