How to find what depends on a specific version of a specific dependency?

后端 未结 3 1612
刺人心
刺人心 2021-02-13 02:51

I\'m getting this error when I run my app (not at compile time):

Could not load file or assembly \'Castle.Windsor, Version=2.1.0.0, Culture=neutral,

相关标签:
3条回答
  • 2021-02-13 03:28

    Have you looked at the assembly binding log viewer (Fuslogvw.exe)?

    This should provide all the information needed.

    See on MSDN.

    0 讨论(0)
  • 2021-02-13 03:32

    You could use the Fuslogvw.exe utility which will provide you more information on the calling assembly. Scott Hansleman also blogged about it.

    0 讨论(0)
  • 2021-02-13 03:33

    FusionLog tool is best tool for things like that, but sometimes will only point to your code. Try turning up the verbosity for MSBuild and you might be able to track it down to where the compilation is at when it fails.

    0 讨论(0)
提交回复
热议问题