Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Bonio Lopez
No, either use exec and devenv or just csc tasks, and do a dependency tracking manually using task. -Original Message- From: Burgess, Michael [mailto:[EMAIL PROTECTED] Sent: Dienstag, 8. August 2006 19:47 To: Bonio Lopez Subject: RE: [NAnt-users] Factoring out a 'devenv' call into 'csc'

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Bonio Lopez
Yes, ms_build supports VS2005 only -Original Message- From: Burgess, Michael [mailto:[EMAIL PROTECTED] Sent: Dienstag, 8. August 2006 18:13 To: Bonio Lopez; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] Factoring out a 'devenv' call into 'csc' Is that VS2005 only? -Origi

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Burgess, Michael
Is that VS2005 only? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bonio Lopez Sent: 08 August 2006 17:03 To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Factoring out a 'devenv' call into 'csc' Hi, Here is an example how to use ms_build

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Bonio Lopez
Hi, Here is an example how to use ms_build Regards, Boni -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Burgess, Michael Sent: Dienstag, 8. August 2006 14:37 To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Factoring out a 'dev

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Burgess, Michael
Solution task can't be used because we have .csdproj files as it's a win32/ce/citrix project. Don't know much about MSBuild other than my dabble with it on a 4-day VSTS workshop. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gary Feldman Sent: 08 August

Re: [NAnt-users] How to overload targets

2006-08-08 Thread Gary Feldman
Bonio Lopez wrote: > Hi Gary, > I tested you approach and it works and does what I needed. > In master build file I include for all targets following: > >unless="${file::exists(property::get-value('tmp'))}"/> >if="${file::exists(property::get-value('tmp'))}"/> > I'm n

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Gary Feldman
Burgess, Michael wrote: > > This may be less a NAnt problem and more an MS issue, but I’m sure you > guys would be able to help. > > If I’m currently calling ‘devenv’ through the exec task and realise > that it’s pretty inefficient. > > Is there any kind of thing to consider when porting my scrip

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Bonio Lopez
Hi Mike, for VS2003 you can use task for VS2005 ms_build task from Nantcontib. There is also task, but then you will have to track dependencies manually. Regards, Boni From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Burgess, MichaelSent: Dienstag, 8. August 2006 12:54To:

[NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Burgess, Michael
This may be less a NAnt problem and more an MS issue, but I’m sure you guys would be able to help.   If I’m currently calling ‘devenv’ through the exec task and realise that it’s pretty inefficient.   Is there any kind of thing to consider when porting my scripts to build using ‘csc’? A

Re: [NAnt-users] How to overload targets

2006-08-08 Thread Bonio Lopez
Hi Gary, I tested you approach and it works and does what I needed. In master build file I include for all targets following: So I can put build.inc into my local directory if it differs from master build. Thanks for the idea. Boni -Original Message- From: