vote up 2 vote down star

I have nant set up to build my ASP.NET MVC project and it works fine locally. I add nant to a tools folder and add it to version control. TeamCity picks up my changes and starts the build but it fails.

I believe I'm using the latest version of Nant and I have added the .net framework 3.5 to the nant.exe.config. What am I missing on the server and yes the .net framework is installed on the server as the asp.net mvc app does work if I manually build and deploy there?

The build file is as follows:

<target name="compile" description="Compiles using the AutomatedDebug Configuration">
	<msbuild project="Tolt.Sims.sln" />
</target>

Here is the error:

BUILD FAILED Failed to initialize the 'Microsoft .NET Framework 2.0' (net-2.0) target framework.
Property evaluation failed. Expression: ${path::combine(sdkInstallRoot, 'bin')} ^^^^^^^^^^^^^^ Property 'sdkInstallRoot' has not been set.
For more information regarding the cause of the build failure, run the build again in debug mode. Try 'nant -help' for more information
flag

61% accept rate

4 Answers

vote up 3 vote down check

If you're using the beta version of NAnt (which currently is the only way you'll get support for targeting anything greater than the 2.0 framework), you maybe running into a registry problem. A similar problem was reported by Tim Barcz.

Things pretty much boiled down to NAntContrib (provider of msbuild task) pointing to the 2.0 version of msbuild. Check out his solution to see if it applies to your scenario.

link|flag
Does this mean that I have to install the SDK on my build server? – Stefan Moser Nov 18 '08 at 0:49
I'm not entirely sure of what you're asking, but if your build server is where this nant process is executing, then you would need to install the .NET 3.5 SDK there. – Scott Saad Nov 19 '08 at 15:15
vote up 0 vote down

I fixed this by adding the following in the registry:

New string value at: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft.NETFramework

Named: sdkInstallRootv2.0

With the value: C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\

Seemed to spring into life...

w://

link|flag
vote up -1 vote down

Potentially, you dont have the .NET Framework 2.0 SDK installed.

You can install it from http://www.microsoft.com/downloads/details.aspx?familyid=fe6f2099-b7b4-4f47-a244-c96d69c35dec&displaylang=en

link|flag
vote up 0 vote down

See http://www.mail-archive.com/nant-developers@lists.sourceforge.net/msg07519.html; it's a known bug in 0.86 beta1.

link|flag

Your Answer

Get an OpenID
or

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