[NAnt-users] Launching Nant From Local Network

2006-08-25 Thread Camus, Olivier
Hello, I had implemented nant for a new project. It's quite fine for our usage. Now,I have to deploy it on Windows Local Network in order to make it usable by all teams members. When we reference Nant.exe from network, it failled (cf end of email): Either we cannot launch Nant from

Re: [NAnt-users] Launching Nant From Local Network

2006-08-25 Thread Gary Feldman
Camus, Olivier wrote: ... Now, I have to deploy it on Windows Local Network in order to make it usable by all teams members. When we reference Nant.exe from network, it failled (cf end of email): Either we cannot launch Nant from local network ? Nor I have to setup a configuration to

Re: [NAnt-users] Launching Nant From Local Network

2006-08-25 Thread olivier.france
Ok, but how to define this attribut in which section? Shall I do it in the .build file, or in a config file in ant installation directory? Thanks, Olivier. Gary Feldman-5 wrote: Camus, Olivier wrote: ... Now, I have to deploy it on Windows Local Network in order to make it usable by

Re: [NAnt-users] Launching Nant From Local Network

2006-08-25 Thread Gary Feldman
olivier.france wrote: Ok, but how to define this attribut in which section? Shall I do it in the .build file, or in a config file in ant installation directory? Ah, you must be relatively new to .Net programming. In .Net, programs almost always have a configuration file associated with

[NAnt-users] fileset question

2006-08-25 Thread Arnette, Bill
I was expecting this statement to include all files in ${build.stageDir} as well as all files in all directories beneath ${build.stageDir}. include name=${build.stageDir}/**/*/ Instead, I have to do this: include name=${build.stageDir}/*/ include name=${build.stageDir}/**/*/ Is

Re: [NAnt-users] fileset question

2006-08-25 Thread Bob Archer
I think you would only need to do: include name=${build.stageDir}/**/ BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Arnette, Bill Sent: Friday, August 25, 2006 3:27 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] fileset question