Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-11 Thread Klaus Lüdenscheidt
Matthew Mastracci wrote: I don't have VS.NET in front of me, so I'll try to remember what we did. Use the build configuration dialog to create a copy of your Release configuration called "NAnt". Once you've created the copy, uncheck the box that selects the projects to build. Use the C++ ma

Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-10 Thread Matthew Mastracci
Jim Geurts wrote: I don't know if this would interest anyone, but we use a vs.net addin, at work, that we can release to the community. When we do a solution build, it'll search for a solution level build file. The addin runs all nant tasks before it hits the task. Then it

Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-10 Thread Thibaut Barrère
Or the other way round of course... 2005/6/10, Thibaut Barrère <[EMAIL PROTECTED]>: > Hi > > what about gathering forces ? (adding your addin functionalities to > nantrunner ?) > > note : I'm not the author of nantrunner ;) > > regards > > Thibaut > > 2005/6/10, Jim Geurts <[EMAIL PROTECTED]>

Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-10 Thread Thibaut Barrère
Hi what about gathering forces ? (adding your addin functionalities to nantrunner ?) note : I'm not the author of nantrunner ;) regards Thibaut 2005/6/10, Jim Geurts <[EMAIL PROTECTED]>: > Yeah, I realize that project exists... it's a nice project and I'm happy > that someone took on that chal

Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-10 Thread Jim Geurts
Yeah, I realize that project exists... it's a nice project and I'm happy that someone took on that challenge.  The difference is that our addin will automatically run pre/post build events for each solution build.  On 6/10/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: There's already a VS.NET pl

Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-10 Thread hans
There's already a VS.NET plugin on SourceForge : http://nantrunner.sourceforge.net/ features : * adds a build tree node for each .nant or .build file found in your open solution * reads NAnt file imports adding all reachable targets to a tree * puts targets with no description in th

Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-10 Thread Jim Geurts
I don't know if this would interest anyone, but we use a vs.net addin, at work, that we can release to the community.  When we do a solution build, it'll search for a solution level build file.  The addin runs all nant tasks before it hits the task. Then it uses vs.net to build the solution normal

Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-09 Thread Klaus Lüdenscheidt
Matthew Mastracci wrote: We solved it in-house by creating a new solution configuration based on the Release configuration and called it "NAnt". The NAnt configuration disables all the projects and uses Makefiles to call NAnt to build the debug configuration. This sounds very interesting.