vote up 0 vote down star

I moved one of my VS projects (C#) from one machine to another (SVN checkout) and when I'm trying to build it there I'm getting the following error:

Unable to load one or more of the requested types. Retrieve the LoaderExceptions 
property for more information.

That doesn't give too much information about the nature of the problem. There were no problems building the same checkout on other machines. All of the machines I'm building this project are using the same version of VS 2008 SP1 and .NET 3.5SP1. Can anyone give me some clues where should I look for the problem?

flag

5 Answers

vote up 3 vote down check

I'd enable the fusion log (part of the .Net SDK), then use the viewer to check for binding problems - may even be that VS needs repairing...

Assembly Binding Log Viewer

link|flag
This tools works on run time. I cannot build my app so that won't help me too much. – RaYell Sep 22 at 9:34
Actually, it'll display the binding errors in Visual Studio and MSBuild too, which is where your problem is. – Kieron Sep 22 at 9:50
(Remember that VS is a .NET host, and all hosted instances of the .NET FW will log binding errors when the logger is enabled) – Kieron Sep 22 at 9:51
vote up 1 vote down

Have you done somehting to your build files (*.csproj etc)? Could be that there's a target that depends on some DLL that's missing.

link|flag
No I haven't, just checked out the latest sources and now I'm trying to build them. – RaYell Sep 22 at 9:30
vote up 1 vote down

Have you installed MVC/ Silverlight or any other "additional" bits you are using?

It seems a project type is missing.

Kindness,

Dan

link|flag
Yes, all additional libraries required to build my app has been installed. Also I have several projects in my solutions and only the main one doesn't build correctly. I have no problems with the others. – RaYell Sep 22 at 9:11
vote up 1 vote down

Have you checked the references? I had all kinds of these problems before I started using continuous integration.

Other thing is that the build order of the projects is somehow messed up. Try building projects one by one.

link|flag
I already tried that, all of my projects but one builds fine. The one that failes uses references to all the other projects. – RaYell Sep 22 at 9:12
vote up 1 vote down

You probably have a missing reference. See this post for more information.

link|flag
Unfortunatelly cleaning and rebuilding doesn't change anything. I'm still getting the same error. This is also the only error, I'm not getting any warnings or anything about libraries that couldn't been found. – RaYell Sep 22 at 9:14

Your Answer

Get an OpenID
or

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