为什么Paket在默认情况下比Nuget安装更多的软件包?这是正常行为还是我做错了什么?
我跟踪了入门指南 (但在paket.powershell的帮助下,paket.powershell是由choco install paket.powershell安装的):
Paket命令初始化Paket-Initnuget reactiveui添加到paket.dependencies文件中Paket-Install命令下载软件包因此,我的packages文件夹中有以下内容:
reactiveui
reactiveui-core
Rx-Core
Rx-Interfaces
Rx-Linq
Rx-Main
Rx-PlatformServices
Rx-WindowStoreApps
Rx-WinRT
Rx-Xaml
Splat
System.Collections
System.Diagnostics.Debug
System.Diagnostics.Tools
System.IO
System.Linq
System.Linq.Expressions
System.ObjectModel
System.Reflection
System.Reflection.Extensions
System.Runtime
System.Runtime.Extensions
System.Runtime.InteropServices.WindowsRuntime
System.Runtime.Serialization.Primitives
System.Runtime.Serialization.Xml
System.Text.Encoding
System.Threading
System.Threading.Tasks当从VS Package控制台使用基于nuget的标准Install-Package reactiveui时,我有:
reactiveui-core.7.0.0
reactiveui.7.0.0
Rx-Core.2.2.5
Rx-Interfaces.2.2.5
Rx-Linq.2.2.5
Rx-Main.2.2.5
Rx-PlatformServices.2.2.5
Rx-XAML.2.2.5
Splat.1.6.0第一个结果是非常分散所有这些依赖。还是应该是这样的?我觉得我错过了一些额外的限制/限制参数..。
发布于 2016-12-20 22:54:38
(张贴我的评论作为回答)
当您没有指定框架时,就会发生这种情况。
将“”改为“框架: net45”。
https://stackoverflow.com/questions/41202701
复制相似问题