HI all misters

When I try Debug my project (unit tests) i get the following error:

LoadFromContext was detected Message: The assembly named 'Microsoft.VisualStudio.QualityTools.Common' was loaded from 'file:///C:/Program Files/Microsoft Visual Studio 8/Common7/IDE/PrivateAssemblies/Microsoft.VisualStudio.QualityTools.Common.DLL' using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.

It's nightmare for me...!!!

I am using VS 2008 profession, XP sp2 Any suggestions , please ??

Thanks.

link

36% accept rate
feedback

2 Answers

I've been having this problem and I just figured out how to stop it.

In Visual Studio, click on "Exceptions" under the "Debug" menu. Turn off the "Thrown" checkbox for all of the items. If you want, you can just turn off the one "LoadFromContext" exception under the "Managed Debugging Assistance" category.

link
Brilliant, thanks! – David_Jarrett Apr 27 '10 at 15:54
Awesome. I never thought to look in that tree for specific values. – EndangeredMassa Oct 15 '10 at 23:20
Thanks this worked for me – rmx Feb 2 '11 at 9:59
1  
This stops the exception from being shown, but it is still thrown and does not solve the problem, or do I misunderstand the problem? – Gorgsenegger Apr 19 '11 at 11:47
Also solves the debug problem when using the resharper test runner in visual studio 2010 – Thomas Eyde May 26 '11 at 8:14
feedback

Thanks, solved a similar problem for me!

My message was:

LoadFromContext was detected Message: The assembly named 'nunit.util' was loaded from 'file:///C:/Program Files (x86)/JetBrains/ReSharper/v5.1/Bin/nunit.util.DLL' using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.

On Visual Studio 2010 (using resharper 5.1)

link
feedback

Your Answer

 
or
required, but never shown

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