0

假设我们有:

  • 程序集 A 引用了 assebly NH 版本 2.0.0.0。
  • 程序集 B 引用了 assebly NH 版本 2.0.0.0。
  • 程序集 C 引用了 assebly NH 版本 1.0.0.0(意外)
  • 我们的测试 Web 项目引用了组件 A、B、C 和 NH 2.0.0.0。

Nuget 有一个很棒的功能,它可以自动检测这些程序集冲突并创建绑定重定向指令。Nuget 命令Add-BindingRedirect会将此类字符串添加到测试项目 web.config 文件中:

<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
      <assemblyIdentity name="NH" publicKeyToken="aa95f207798dfdb4" culture="neutral" />
      <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
    </dependentAssembly>
  </assemblyBinding>
</runtime>

现在想象我们有更多的库,引用 NH。问题是:识别奇数版本的最佳(最好不是手动)方法是什么?

4

1 回答 1

1

要调查绑定错误,您可以使用Fusion Log Viewer

您可以将其配置为记录所有绑定,这基本上可以让您了解哪些程序集从何处加载。

典型输出如下所示:

=== Pre-bind state information ===
LOG: DisplayName = graphicfailtest.resources, Version=0.0.0.0, Culture=en-US, PublicKeyToken=null
 (Fully-specified)
LOG: Appbase = C:\bla\graphic\cs\
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = NULL
Calling assembly : graphicfailtest, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null.
===

LOG: Processing DEVPATH.
LOG: DEVPATH is not set. Falling through to regular bind.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Post-policy reference: graphicfailtest.resources, Version=0.0.0.0, Culture=en-US, PublicKeyToken=null
LOG: Attempting download of new URL file:///C:..../graphicfailtest.resources.DLL.
LOG: All probing URLs attempted and failed.
于 2013-10-24T16:23:30.433 回答