所以我有一个NServiceBus.Host包依赖于NServiceBus> = 4.5.0。
在nuget上有一个4.5.1版本的NServiceBus。当我安装包NServiceBus.Host时,我得到:
PM> install-package nservicebus.host
Attempting to resolve dependency 'NServiceBus (≥ 4.5.0)'.
Attempting to resolve dependency 'NServiceBus.Interfaces (≥ 4.5.0)'.
Installing 'NServiceBus.Interfaces 4.5.0'.
You are downloading NServiceBus.Interfaces from NServiceBus Ltd, the license agreement to which is available at http://particular.net/LicenseAgreement. Check the package for additional dependencies, which may come with their own license agreement(s). Your use of the package and dependencies constitutes your acceptance of their license agreements. If you do not accept the license agreement(s), then delete the relevant components from your device.
Successfully installed 'NServiceBus.Interfaces 4.5.0'.
Installing 'NServiceBus 4.5.0'.
正如您所看到的,我得到了4.5.0版本的依赖项。
在nuget doco中声明:
如果未安装依赖项,NuGet将执行以下操作 步骤进行:
NuGet枚举Feed中的每个Subkismet版本 在版本规范内。 NuGet然后缩小设置为just 具有最低主要/次要版本的包。其余的 软件包,NuGet选择版本号最高的软件包。
“NuGet选择版本号最高的那个。”似乎在这里违反了,因为从来没有版本。
这是NuGet中的错误吗?
答案 0 :(得分:9)
自2010年12月以来,您所引用的依赖关系解析的NuGet文档尚未更新。真正的NuGet文档可在此处获取:https://docs.nuget.org
此外,NuGet将 - 默认情况下 - 解析允许范围内的最低major.minor版本,如包依赖项中所定义。所以4.5.0是一个正确的默认依赖解析。
自NuGet v2.8.1以来的新功能:您可以使用NuGet包管理器控制台使用备用依赖项解析算法:
Install-Package NServiceBus.Host -DependencyVersion HighestPatch
还有更多选项,请查看此处的文档: https://docs.nuget.org/docs/reference/package-manager-console-powershell-reference#Install-Package
答案 1 :(得分:4)
正如Xavier所说,这似乎是默认行为。但是,文档说您可以通过编辑nuget配置来更改默认行为:
指定要从有效依赖关系包列表中选择的依赖关系包的版本。最低价值是最低的。您可以通过在nuget.config文件中指定新的默认值来覆盖此默认值:
<configuration>
<config>
<add key="DependencyVersion" value="HighestPatch" />
</config>
</configuration>
我按照文档中的描述编辑了我的配置文件:
%AppData%\Nuget\NuGet.Config
然后它在Powershell中工作,但不在常规命令提示符中。
文档也说:
奇怪的是,文档说2.7.2之前的默认值是HighestPatch ......
请注意,对于NuGet 2.7.2或更早版本,默认值为HighestPatch,并且无法更改。
2.8的发行说明提到了行为的变化,以及安装包现在具有一致的依赖性解析结果的原因。