为什么Paket默认情况下,Paket安装比Nuget更多的软件包?是正常的行为还是我做错了什么?
我遵循"入门指南"(但是在choco install paket.powershell
安装的paket.powershell
的帮助下):
- 我做了一个新的WPF项目
- 用
Paket-Init
初始化的Paket
命令 - 将
nuget 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软件包管理器控制台使用标准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
第一结果对所有这些依赖性都非常分散。还是应该如何成为?我觉得我错过了一些其他限制/限制参数...
(将我的评论作为答案)
当您不指定框架时,这会发生。
将" nuget reactiveui"更改为" nuget reactiveui框架:net45"。