[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: OE.Net How to validate assemblies at runtime without PDSOE

  • Thread starter Thread starter DenDuze
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top