RE: [Nant-users] Deployment to remote PC using Nant

2004-03-07 Thread Morris, Jason
I do this all the time for my projects.  Just use the task and specify the UNC path that you want the files to go to.   Something like this:   \\ServerName\share\directory verbose="${isVerbose}" overwrite="true">             I hope this helps.   Jason From: [EMAIL PROTECTED]

RE: [Nant-users] ASP.NET Projects with references to Infragistics

2004-03-07 Thread Morris, Jason
Here is a sample from our ASP.NET build script using nAnt 0.84.  We do the following:   1) copy over the Infragistic files to build directory and the dlls to the build's bin directory. 2) Then we compile our assembly that reference the infragistic components.  We have the license.licx file in

RE: [Nant-users] General Nant Question

2004-03-07 Thread Morris, Jason
Title: General Nant Question I have been using nAnt for quite some time to do all the things that you mentioned in your five steps, except for step 1.  I am sure it is possible, but have no experience doing it with nAnt.  I am not sure if I understand why you need to uninstall and install ASP

[Nant-users] Deployment to remote PC using Nant

2004-03-07 Thread Steven Hawkes
HI,   I have a build from Nant where I want to distribute the various assemblies to remote dirrent PCs located on the same  network as the PC doing the Nant build.   Is it possible to do this directly from a task in Nant? e.g. some form of copy task.   Kind Regards   Steve