Re: [NAnt-users] How about a clean and rebuild operation on the task

2006-08-04 Thread Michael Frederick
Even better might be: Unless you need to do something in between...Like the way the task works with targets. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get

[NAnt-users] How about a clean and rebuild operation on the task

2006-08-04 Thread Arnette, Bill
I could write a target the cleans all the objs and exes out before building a solution, but it would be so much nicer to do something like this: Thoughts? - Take Surveys. Earn Cash. Influence the Future

Re: [NAnt-users] Dependency tracking

2006-08-04 Thread Bonio Lopez
Thanks,  did the job From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Freitag, 4. August 2006 13:01To: [EMAIL PROTECTED]Cc: nant-users@lists.sourceforge.net; [EMAIL PROTECTED]Subject: Re: [NAnt-users] Dependency tracking Boni, Have a look at the task, that should do what you wan

Re: [NAnt-users] Dependency tracking

2006-08-04 Thread William_Martin
Boni, Have a look at the task, that should do what you want. Something like:                                 @lists.sourceforge.net Sent by: [EMAIL PROTECTED] 04/08/2006 12:43 To cc Subject [NAnt-users] Dependency tracking Hi, Supposed I have a compiler my_compiler

[NAnt-users] Dependency tracking

2006-08-04 Thread Bonio Lopez
Hi, Supposed I have a compiler my_compiler, which converts files *.my_ext into *.my_compiled In the target I use currently: Is it possible like in gmake create a target, which converts *.ext into *.my_compiled and which knows that *.my_compiled needs only to be recompiled if *.ext changed Than