Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 3 down vote accepted

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

share|improve this answer
This tools works on run time. I cannot build my app so that won't help me too much. – RaYell Sep 22 '09 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 '09 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 '09 at 9:51

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

share|improve this answer
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 '09 at 9:14

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.

share|improve this answer
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 '09 at 9:12

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

It seems a project type is missing.

Kindness,

Dan

share|improve this answer
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 '09 at 9:11

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.

share|improve this answer
No I haven't, just checked out the latest sources and now I'm trying to build them. – RaYell Sep 22 '09 at 9:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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