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

Recently I started to get this message randomly. I have a solution with several projects in it. Current build mode is Debug and all projects' configuration is set to Debug. But when I try to run the main project - sometimes it gives me a few errors all of which are "Metadata file '...\Release\projectX.dll' could not be found" - and, look, it says about RELEASE folder, though current mode is Debug. Why? I tried to search for reference to "Release\projectX.dll" inside all solution files and I found one in ResolveAssemblyReference.cache file.

I made a good search over the internet and found a few people with the similar problem, but there was no solution, or at least no working solution.

I tried to delete references to those projects and readd them, but in some time I start getting these errors again.

It seems like a bug. Why does it search for referenced projects in Release folders when I always use Debug mode?

PS. For those who met this problem: I couldn't solve it with an easy way, it disappeared only after I reinstalled windows :(

share|improve this question

20 Answers

When you say you deleted references to those projects and re-added them, how did you re-add them, exactly? Did you use the "Browse" tab in the "Add Reference" dialog in Visual Studio? Or, did you use the "Projects" tab (which lists neighboring projects in your solution)?

Edit: If you use the "Browse" tab, and manually add the reference to your .dll that is located in the /Release folder, then Visual Studio will always look for the .dll in that location, regardless of what mode you're currently in (Debug or Release).

If you removed the actual .dll file from the Release folder (either manually or by doing "Clean Solution"), then your reference will break because the .dll does not exist.

I'd suggest removing the reference to ProjectX.dll, and add it in again--but this time, use the "Projects" tab in the "Add Reference" dialog. When you add a reference this way, Visual Studio knows where to get the appropriate .dll. If you're in Debug mode, it will get it from the /Debug folder. If in Release mode, the /Release folder. Your build error should go away, and you also will no longer be (improperly) referencing a Release .dll while in Debug mode.

share|improve this answer
I used "Browse" tab in the "Add Reference" dialog – nightcoder Jun 12 '09 at 10:51

Everyone is correct...try everything...(in order of a little to a lot of time wasted)

  1. Do you have bad code? Fix that first.
  2. Clean Solution & Restart Visual Studio
  3. Remove / Add References
  4. Check your build order w/ larger projects and verify
  5. Manually rebuild sub-projects
  6. Manually copy dlls between projects into associated bin folders
  7. Go get some coffee, play some pinball and come back tomorrow...you may think of something else in the meanwhile.
share|improve this answer
You need to clean up all ERRORS and get the solutions/project stable. – David K Egghead Jan 6 at 0:49

Did you check the Configuration manager settings. In the project settings dialog top right corner.

Sometime it happens that between all the release entries a debug entry comes in. If so the auto dependency created by the dependenc grapgh of the solution gets all confused.

share|improve this answer
I checked it. All projects have the same configuration. – nightcoder Jun 12 '09 at 10:49

I had the exact same problem. Big visual studio solution with 50+ projects.

All references were added as projects. Project build order was correct (right click on project and select build order).

However when building some of the higher level projects the "root" project they depended on were not built.

The problem was that these projects were not selected to build under the current configuration (don't know how this happened).

To check this select "Configuration Manager" (Build menu) e check if the problematic projects are set to build.

share|improve this answer

I've had this problem before and the only way I've found to solve it is to run Clean Solution and then restart Visual Studio.

share|improve this answer
It doesn't help in my situation, after short time the problem appears again. – nightcoder Jun 14 '09 at 16:24
I tried that - doesn't help – Vidar Aug 16 '11 at 21:05
This is what fixed it for me. – splintor Nov 11 '12 at 14:24

I've also seen this error in solutions where I have multiple projects (usually netTiers projects where I've updated one or more of the sub-projects to target the 4.0 framework). It can be problematic to remove. Oftentimes it can be resolved, however, by first fixing all other errors in sub-projects (eg, any missing references), individually rebuilding those sub-projects, then removing/adding back any references to those sub-projects in Visual Studio. Personally, I've had little luck resolving this error by cleaning the solution alone.

share|improve this answer
1  
Removing references from other projects (my UI and Test projects, for example), fixing the errors (in the Core project), building, and then re-adding those references did the trick for me. – Ken Pespisa Jun 8 '11 at 20:09

I seem to recall having a similar problem a few months ago. I solved it temporarily by copying the referenced DLL to the Release folder, thus satisfying Visual Studio's expectations. Later, I discovered the reference to the Release DLL in my actual code. You should try doing a search through the entire project for \release\project.dll.

Also, I have noticed that Visual Studio unit test projects sometimes put a "DeploymentItem" attribute on each of the test methods pointing to your target DLL, and if you switch between Debug and Release, Visual Studio can get confused if the DLL is no longer in the expected location. In my experience, these attributes can be safely deleted if you didn't put them there yourself as part of a "single deployment" scenario.

share|improve this answer

We have that problem quite often, but only with references to C++/CLI projects from C# projects. It's obviously a bug deep down in VS that Microsoft decided not to fix because it's 'too complex' and they promised an overhaul of the C++ build system which is now targeted for VS 2010.

That was some time ago, and maybe the fix even went into VS 2008, I didn't follow up on it any more. However, our typical workaround was

  • switch configuration
  • restart Visual Studio
  • build solution
share|improve this answer
After this problem disappears forever or just temporarily? And what do you mean by "switch configuration"? For example I always use Debug configuration. What should I do? – nightcoder Jun 12 '09 at 14:46
It disappears temporarily. Actually, it may not be a solution to you if you never switch configuration between debug and release. Or switching to release and then debug might fix it, who knows ;) – OutOfMemory Jun 12 '09 at 15:13
Well, a few days ago I switched to release, built the solution, and then switched back to Debug. After this the problem mutated :) : now I get only 1 such error instead of a few - it's like other projects have been "fixed" :) – nightcoder Jun 12 '09 at 15:59

This problem is due to pdb files or CodeContracts, to resolve it:

1) Clean your output folder and rebuild the solution.

2) Re-Configure the CodeContracts or disable it for temporary build.

Hope this helps.

Best regards,

share|improve this answer

We recently ran into this issue after upgrading to Office 2010 from Office 2007 - we had to manually change references in our project to version 14 of the Office Interops we use in some projects.

Hope that helps - took us a few days to figure it out.

share|improve this answer

I had this problem and it was due to an invalid method in the offending library (dll) that did not return a value, e.g.

public bool DoSomething()
{
   //I never bothered putting code here....

}

When I commmented this out everything compiled :)

share|improve this answer

It seems to happen when you checkout a solution with multiple projects that have references between them, and you haven't built it before. If you have references directly to the dlls, instead of referencing the project, you'll get this message. You should always use the Projects tab in the Add Reference dialog to add a reference to a project in the same solution. This way, VS can know the correct order in which to build the solution

share|improve this answer

same happened to me today as described by Vidar.

I have a Build error in a Helper Library (which is referenced by other projects) and instead of telling me that there's an error in Helper Library, the compiler comes up with list of MetaFile-not-found type errors. After correcting the Build error in Helper Library, the MetaFile errors gone.

Is there any setting in VS to improve this?

share|improve this answer

Sometimes VS2010 switches my configuration from Any CPU to Mixed Platforms. When this happens I get this error message.

To resolve it I switch back to Any CPU:
1. Right click on the solution and select properties.
2. Click on Configuration Properties and then the Configuration Manager... button.
3. Under Active solution platform select Any CPU

share|improve this answer

I had the same problem. I noticed that my db context (EF4) that was located in the project dll wasn't recognize for some reason. I deleted it and created another one instead. and that solved it for me.

share|improve this answer

Had the same problem today.

My application, a Windows Forms applications, accidently had a reference to itself. Weird.

Once removed, the error went away.

The reference got added each time I dragged a user control, located in the Windows Forms project itself, to a form.

share|improve this answer

I find that this usually occurs to me when i still have a method declaration in an interface, which a class implements, but that i had later removed and had forgotten to remove it from the interface as well. I usually just save the entire solution every 30mins n then just revert back to an earlier version if i cant find the error.

share|improve this answer

In my case it was caused by two things (VS.2012):

1) One of the projects was configured for AnyCPU instead of x86

2) A project that was referenced had somehow the "Build" checkbox unchecked.

Do check your Build | Configuration Manager to get an overview of what is being built and for which platform. Also make sure you check it for both Debug & Release as they may have different settings.

share|improve this answer

I agree with most of the answers posted here. However if all the suggested solutions didn't work, consider that you probably have another kind of error in your error list, that is preventing VS to build a project's DLL needed for the other projects. Then no matter the build order or configuration, you won't be able to get rid of "metadata" error till the other issues are sorted out.

share|improve this answer

CHECK YOUR PROJECT PATH. It should have no irregular character like comma and space

for example this is incorrect path: d:\my applications\Project1

and this is true path d:\my_applications\Project1

The visual studio cannot build the project when there is a non alphabetic and numeric character in it's path in disk and it show no message for this fault!

Also some installation tools have same problem when they start installation and can not be extracted.

share|improve this answer

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.