Nuget升级问题
我最近在一台新计算机上安装了 Visual Studio,因此我现在拥有 Nuget 1.5.2。这个版本似乎不适用于我的旧解决方案。当我添加一个新项目并尝试通过 Nuget 添加引用时,它说它们已经安装并且不执行任何操作,即使该引用在新项目中不存在。
有谁知道为什么会发生这种情况,或者我可以在哪里下载旧的 Nuget (1.4.2)?
谢谢!
I recently installed Visual Studio on a new computer and as a result I now have Nuget 1.5.2. This version doesn't seem to work with my old solution. When I add a new project and try adding references via Nuget, it says they are already installed and does nothing, even though that reference doesn't exist in the new project.
Does anyone know why this might be happening or alternatively where I can download the old Nuget (1.4.2)?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NuGet 命令行以 NuGet 包的形式提供。
就像任何其他 NuGet 包一样,您可以通过使用包管理器控制台中的 -Version 开关来获取特定版本。
要获取 NuGet 命令行工具 v1.4.2,您应该从程序包管理器控制台执行以下 PowerShell 脚本:
Install-Package Nuget.CommandLine -Version 1.4.20615.182
The NuGet Command Line is available as a NuGet package.
Just like with any other NuGet package, you can get a specific version by using the -Version switch in the Package Manager Console.
To get v1.4.2 of the NuGet command line tool, you should execute the following PowerShell script from the Package Manager Console:
Install-Package Nuget.CommandLine -Version 1.4.20615.182