vote up 1 vote down star

I have a visual studio 2005 solution (.sln) with a mix of .NET and C++ projects. What is the best way to generate the .build file I will need to run my build process with NAnt. I'm new to using NAnt, and I'm not sure how to set it up. Will I have to update the .build file manually every time there is a new source file in any of the projects? Is there a tool that will generate the files for NAnt from the .sln and studio project files?

flag

3 Answers

vote up 4 vote down check

There is no way that I know of to generate a .build file from an sln. There should be decent examples of .build files at nant.sourceforge.net

That being said there are two ways to build a .sln file from NAnt.

  • checkout nant.sourceforge.net or nant-contrib for built in or extended tasks to do this
  • use an "exec" task to shell out msbuild.exe to build the sln.

msbuild.exe has native support for sln files. You can build an sln file from the command line as follows:

msbuild.exe /p:Configuration=Debug /t:rebuild MySolution.sln

msbuild.exe can be found in your .NET Framework directory (e.g. C:\WINDOWS\Microsoft.NET\Framework\vX.XX.XXXX)

link|flag
vote up 0 vote down

HI Guys , I am also having the same kind of problem in buliding the platform code on my build server as i am also using nant 0.86-beta1 (Supposed to be fixed with it) VS 2008

I am getting the same error that Solution format of file C:......Platform.sln' is not supported.]]>

IS ther any way around to over come with this situation, any help or expert advice will be really apericiated. TX in advance N@

link|flag
vote up 0 vote down

With nant you will have to use the EXEC command to shell out to msbuild for the solution files.

Others have been experiencing the same issues.

link|flag
NAntContrib has an MSBuild task as @mjmarsh indicated. – Scott Saad Feb 13 at 16:37
The problem comes from the fact that nAnt has been having targeting issues as there is a different version of MSBuild for 3.5. Alot of what I have seen on the net has you modifying hte registry in order to get the correct MSBuild version to execute. Thus why people are using the exec task. – Joshua Cauble Feb 13 at 23:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.