How to enable assembly bind failure logging (FUSION) in .NET.
feedback
|
protected by Community♦ Oct 11 '11 at 11:11
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
Add the following values to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion Add: DWORD ForceLog set value to 1 DWORD LogFailures set value to 1 DWORD LogResourceBinds set value to 1 String LogPath set value to folder for logs ie) C:\FusionLog\ Make sure you include the backslash after the folder name. | |||||||||||||||||||
feedback
|
|
If you have the Windows SDK installed on your machine, you'll find the "Fusion Log Viewer" under Microsoft SDK\Tools (just type "Fusion" in the start menu on Vista or Windows 7). Launch it, click the Settings button, and select "Log bind failure" or "Log all binds". If these buttons are disabled, go back to the start menu, right-click the Log Viewer, and select "Run as Administrator". | |||||||||||||
feedback
|
|
I just posted this on a similar question - I think it's relevant here too. I usually use the fusion log viewer (fuslogvw.exe from a visual studio command prompt or Fusion Log Viewer from the start menu) - my standard setup is:
Remember to turn of logging off once you're done! | |||
|
feedback
|
|
Set the following registry value: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion!EnableLog] (DWORD) to 1 To disable, set to 0 or delete the value. [edit from Brian]: Windows Registry Editor Format:
| |||||||||||||||||
feedback
|
|
Gary's solutions worked for me although I also had to follow by resetting IIS. Note I configured this in a clean environment where I didn't want to install SDKs and the like. | |||||||
feedback
|
|
The Fusion Log Settings Viewer changer script is bar none the best way to do this. ASP.Net has been tricky at times to get this to work correctly. This script works great and was listed on Scott Hanselman's Power Tool list as well. I've personally used it for years and its never let me down. http://www.paraesthesia.com/archive/2004/10/20/fusion-log-viewer-settings-changer.aspx | |||
|
feedback
|