Debug .NET assembly binding aka Find what dll is used and why

后端 未结 2 665
甜味超标
甜味超标 2021-01-06 20:23

We\'re having some mystery version mismatches on our referenced dll\'s loaded at runtime.

Errors like:

Could not load file or assembly X or on

2条回答
  •  轮回少年
    2021-01-06 21:05

    Totally agree with Chris, Assembly Binding Log Viewer should give you all information you need. In addition you could also use WinDbg + SOS.dll. Mostly it's used for debugging but can be quite useful in some other cases when you need to know as much information as possible. The only problem that could stop you is that it doesn't have nice UI like VS debugger :)

    Good luck!

提交回复
热议问题