在 Nuget 中,我们现在可以对依赖项使用PackageReference格式,还可以使用锁定文件启用可重复构建
在我的项目中,我得到了一些类似的东西:
{ "version": 1, "dependencies": { ".NETFramework,Version=v4.6.1": { "System.Reactive": { "type": "Direct", "requested": "[4.1.2, )", "resolved": "4.1.2", "contentHash": "QRxhdvoP51UuXZbSzcIiFu3/MCSAlR8rz3G/XMcm3b+a2zOC5ropDVaZrjXAO+7VF04Aqk4MCcLEdhxTfWVlZw==", "dependencies": { "System.Threading.Tasks.Extensions": "4.5.1", "System.ValueTuple": "4.4.0" } }, "System.Threading.Tasks.Extensions": { "type": "Direct", "requested": "[4.5.2, )", "resolved": "4.5.2", "contentHash": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==", "dependencies": { "System.Runtime.CompilerServices.Unsafe": "4.5.2" } }, "Apache.Avro": { "type": "Transitive", "resolved": "1.7.7.2", "contentHash": "4zx8Y5wnavxi57ivpMIon4XAnY0d69e4KoiTkMgy4LcstVUPXqD1YZ+IKl3TV2dzV6PJvYGrsLViN+dAN16yvg==", "dependencies": { "Newtonsoft.Json": "3.5.0", "log4net": "1.2.10" } }, "Newtonsoft.Json": { "type": "Transitive", "resolved": "12.0.1", "contentHash": "jmVyoEyk0In8r+AObYQyFKVFm7uSRzE0XSHSbEtBJcZDMV6DqJoyB4FLcHwprPVhAh826so0db3DIKXVnpGoPA==" },
所以我们可以看到,例如我们有冲突的 Newtonsoft.Json 依赖项。在这种情况下,我相信 Apache.Avro 的依赖项声明版本必须> = 3.5.0,因此这应该是兼容的。
当 NuGet 执行其还原时,只有一个给定程序集的 DLL 会在应用程序启动时得到解析和使用。如果没有锁定文件,我必须在所有 csproj 文件中使用 AutoGenerateBindingRedirects=true。
这会生成熟悉的绑定重定向:oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"
如果没有这样的重定向,您会得到同样熟悉的错误消息:
2019-02-19 11:24:10.955 [Debug] host_Opened
2019-02-19 11:24:11.058 [Error] Could not load file or assembly 'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
2019-02-19 11:24:11.058 [Error] at System.Net.Http.Formatting.BaseJsonMediaTypeFormatter..ctor()
在启动时。因为依赖项需要一个非常旧的 Newtonsoft.Json 版本,我们只给它解析的版本 12.0.1。
我的印象是新的 PackageReference 和锁定文件将消除对程序集绑定重定向的需要。但我现在的印象是,仍然需要它们来避免所说的错误。
那是对的吗?绑定重定向的需要是否一定意味着依赖项的设置有问题?当库指定它们将接受版本等于或高于 XYZ 的 DLL 时,为什么需要绑定重定向?