How do I need to indicate to the msbuild task in my nant script that it should use .net 4.0 rc?
feedback
|
|
I think the latest NAnt/NAntContrib defaults to .NET 3.5, so you'll have to change that to 4.0. There is a NAnt property to handle that ( Next, you'll need to go into your NAnt's configuration file and add the 4.0 node, so that NAnt (and by extension NantContrib) are aware of the new CLR version. | |||||
feedback
|
|
The first option is to change the executable that The other option is to use the EDIT: Forgot to mention the directories MSBuild is in. To change versions just use a different MSBuild. 2.0: %windir%\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe | ||||
|
feedback
|