Re: [NAnt-users] Running a NAnt build from custom C# code

2007-01-18 Thread Myles Jeffery
thing has failed. I want to avoid calling NAnt as a separate process; I would rather bootstrap directly. Myles - Original Message - From: "Gary Feldman" <[EMAIL PROTECTED]> To: Sent: Wednesday, January 17, 2007 10:17 PM Subject: Re: [NAnt-users] Running a NAnt buil

Re: [NAnt-users] Running a NAnt build from custom C# code

2007-01-17 Thread Gary Feldman
Myles Jeffery wrote: > I am writing an MSI installer. I want to use NAnt as the backbone for > performing all the installation tasks. How can I call a NAnt project via C#? > I don't know of an API, but you can always start it up via the Process class. But are you really sure you want to do th

[NAnt-users] Running a NAnt build from custom C# code

2007-01-17 Thread Myles Jeffery
Hi, I am writing an MSI installer. I want to use NAnt as the backbone for performing all the installation tasks. How can I call a NAnt project via C#? Does NAnt provide any hooks for listening to progress of the build? For example; for each task completed the progress bar would move along. Thanks