I'm laying the groundwork for an automated build process and am trying to make sure I start down the right path. Our codebase is a mixture of Managed/Unmanaged C++. The managed part is in .NET 2.0 and all of the projects are part of a Visual Studio 2005 solution.
Right now I'm looking at NAnt, but I can't figure out how to perform a build. When I try to build using the tag, it spits out an error:
Microsoft Visual Studio.NET 2005 solutions are not supported.
I feel like I'm just approaching this problem from the wrong direction. Can anyone point me in the right one?
P.S. I also want to run doxygen as part of the build process, but I assume that whatever tool I choose will allow me to run it as a shell command at the very least.