看起来有(至少)两个选项可以让nant使用csproj文件:使用NAntContrib的任务或直接使用msbuild.exe(例如codecampserver)。我是否正确阅读,如果是这样,使用msbuild.exe优于NAntContrib任务有什么好处?
答案 0 :(得分:26)
NAntContrib假定使用.NET Framework V2.0。如果要使用.NET 3.5,则需要直接调用MsBuild.exe。升级到新版本的.NET时,只需修改MSBuildPath属性。
以下是一个例子:
<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>
不同版本的.NET的值MSBuildPath
是
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\MSBuild.exe
C:\Windows\Microsoft.NET\Framework64\v3.5\MSBuild.exe
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe
对于32位版本,请将Framework64
更改为Framework
<强>更新强>
对一些注释进行了跟踪,value
属性用于没有空格的参数。 line
用于需要由于空格而分隔的参数。否则,应用程序将使用空格作为输入的结尾。
答案 1 :(得分:2)
这是一个简单的目标
<target>
<loadtasks assembly="${nant::get-base-directory()}/../../nantcontrib-0.85/bin/NAnt.Contrib.Tasks.dll" />
<msbuild project="${filepath.root}/yourproject.csproj" verbose="true">
<arg value="/p:Platform=${build.platform}" />
<arg value="/t:Rebuild" />
<arg value="/p:OutputPath=${build.dir}/bin/" />
</msbuild>
</target>