vote up 1 vote down star
1

How to enable assembly bind failure logging (FUSION) in .NET.

flag

2 Answers

vote up 2 vote down

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.

link|flag
vote up 2 vote down

Set the following registry value:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion!EnableLog] (DWORD) to 1

To disable, set to 0 or delete the value.

link|flag
Not that the entry probably won't exist - you'll have to create it. At least, I did when I was about to answer this question just before the crash this morning :) – Jon Skeet Nov 1 '08 at 15:54
What does the ! mean? Key or value? What about 64 bits systems? – Bruno Martinez Jul 14 at 15:21
This is a rather incomplete answer. – garykindel Oct 6 at 18:34
this doesn't actually work. the value is ForceLog not EnableLog, and there is an additional step needed here (see: thepursuitofalife.com/getting-assembly-bind-failu…) – Marchy Nov 16 at 22:04

Your Answer

Get an OpenID
or

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