Tag: paket

为什么Paket安装比Nuget更多的包?

为什么Paket默认安装比Nuget更多的包? 这是正常的行为还是我做错了什么? 我按照入门指南 (但在我通过choco install paket.powershell的帮助下): 我做了一个新的WPF项目 使用Paket-Init命令初始化Paket 在paket.dependencies文件中添加了nuget reactiveui 执行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 Manager Console中基于nuget的标准Install-Package reactiveui activui时,我有: 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 […]