Re: [Nant-users] Executing a target more than once

2003-08-26 Thread Gert Driesen
Just add a force="true" attribute on the call task. Gert - Original Message - From: "Brant Carter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 25, 2003 9:00 PM Subject: [Nant-users] Executing a target more than once > It seems that a target will only get executed on

RE: [Nant-users] Executing a target more than once

2003-08-25 Thread Erv Walter
Check out the "force" attribute for the call task in the documentation. Normally, a target only needs to run once (targets usually represent some set of compilation tasks and once something is compiled, there's no need to do it again later. You can override this behavior with the "force" attribut