Re: [Nant-users] [Fwd: Why can't NAnt seem to xcopy ?]

2004-08-31 Thread Ian MacLean
Your example generates the following output for me with current cvs: it seems that both forms you presented work ok. Buildfile: file:///H:/dev/test/nant/x-copytest.build Target(s) specified: test test: [exec] Copies files and directory trees. [exec] [exec] XCOPY source [destination] [/A

[Nant-users] [Fwd: Why can't NAnt seem to xcopy ?]

2004-08-31 Thread Ian MacLean
Please post to the nant-users list and *not* the nant-users-admin list. Original Message Subject:Why can't NAnt seem to xcopy ? Date: Tue, 31 Aug 2004 23:13:50 -0500 From: Loren Halvorson <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> I can't seem to get NAnt (0.84 o

Re: [Nant-users] solution task / GacCache task problem

2004-08-31 Thread Kurien Jacob
Yes it would take some effort to isolate this as the app is large. I guess the best feedback I can give here is that there are four points during the solution build where a new appdomain is created (based on the tasks that I know are invoked) 1. ConsoleStub 2. License 3. GacCache (dont know exact

RE: [Nant-users] Some tasks does not want to execute?

2004-08-31 Thread Felice Vittoria
Ivan,   Quickly looking at this you never specified those targets to execute.   This is why those targets never ran.   If you wanted to execute those targets then just change your default target to be "ende" ... From reading through your build script this will run all targets.   HTH, Felice

Re: [Nant-users] Some tasks does not want to execute?

2004-08-31 Thread Kevin Williams
Are you calling "nant ende" from the command line? The "build" task is the default and the others depend on it. This means they will call build before running, but build will not call them. You must specify those tasks explicity to get them to run. HTH Ivan PavloviÄ wrote: When I execute follow

[Nant-users] Some tasks does not want to execute?

2004-08-31 Thread =?iso-8859-2?Q?Ivan_Pavlovi=E6?=
When I execute following script everything works fine but any task after does not execute at all. Nant says „Build Succesful“ and gives no words about last two targers. Here is HelloWorld.build. I made bold lines that do not execute. Please help!       The Hello World of buil