I\'m developing, with VS2008 using C#, an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS.
I want to
It could be any number of things. Likely causes are:
Your best bet is to use the Fusion log viewer to help diagnose it. Documentation is here:
http://msdn.microsoft.com/en-us/library/e74a18c4(v=vs.110).aspx
(FYI "Fusion" was the code name of the team that designed the assembly loading system; it is somewhat unfortunate that the code name ended up in the file name of the shipped product. The thing should have been called "AssemblyBindingLogViewer.exe" or some such thing.)
In my case problem was that I had two projects that used the same libraries in one solution. I've updated DLLs only in first project. So when I built solution, second project its override DLLs from first project(project build order).
Example:
Solution:
--MainProject
------MyDll v5.3.2.0
--Prototype
------MyDll v5.0.0.0
Problem gone after update DLLs in second project.