Nuget升级问题

发布于 2024-12-10 10:34:30 字数 196 浏览 0 评论 0原文

我最近在一台新计算机上安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白龙吟 2024-12-17 10:34:30

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文