vote up 1 vote down star

It looks like there are (at least) two options for getting nant to use csproj files: using the task of NAntContrib or using msbuild.exe directly (e.g., codecampserver). Am I reading this right, and if so, what is the advantage of using msbuild.exe over the NAntContrib task?

flag

1 Answer

vote up 0 vote down check

The NAntContrib assumes .NET Framework V2.0. If you want to use .NET 3.5, you'll need to use MsBuild.exe.

Here's an example:

<property name="MSBuildPath" value="C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe"/>    
    <target name="build">
    	<exec program="${MSBuildPath}">
    		<arg line='"${SolutionFile}"' />
    		<arg line="/property:Configuration=${SolutionConfiguration}" />
    		<arg value="/target:Rebuild" />
    		<arg value="/verbosity:normal" />
    		<arg value="/nologo" />
    		<arg line='/logger:"C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll"'/>
    	</exec>
    </target>
link|flag
Wow, thanks. I never imagined that NAntContrib was so far behind. – Keith Morgan Jul 30 at 11:37
-1 You can use <msbuild> with .NET 3.5. Make sure You have the latest nightlies of NAnt and NAntContrib (tested NAnt Nightly 20090130 and NAntContrib Nightly 20090201). – The Chairman Sep 8 at 9:16

Your Answer

Get an OpenID
or

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