D
DenDuze
Guest
I used the fuslogvw.exe (part of Visual Studio) a few times to find issues with assemblies. docs.microsoft.com/.../fuslogvw-exe-assembly-binding-log-viewer if you do not have that program you can activate the same by regedit that will write the logging fuslogvw.exe shows to disk. Just put the following in regedit [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion] "ForceLog"=dword:00000000 "LogFailures"=dword:00000001 "LogResourceBinds"=dword:00000001 "LogPath"="c:\\logging\\AssembliesLog\\" ForceLog = log all assemblies binding info, so this will also log the bindings that work fine (not really needed in your case but if you want this change the value to 00000001 LogPath: change to whatever path you like I will not say that this is a sollution for you but with this and Dependency Walker I already fixed some problems with assemblies Regards Didier
Continue reading...
Continue reading...