Nuget添加库包引用错误

发布于 2024-11-14 17:27:54 字数 316 浏览 2 评论 0原文

在我的一个项目中,我在尝试添加某些 nuget 包时开始出现错误。任何 jQuery.ui 包、SassAndCoffee、Knockout.js,甚至 Unity。错误是:

<代码> 安装失败。回滚... 元素“http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd:authors”不能包含子元素“http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd:作者',因为父元素的内容模型只是文本。

我创建了一个空项目,这些都安装得很好。有什么想法吗?

On one of my projects I have started getting errors while attempting to add certain nuget packages. Any of the jQuery.ui packages, SassAndCoffee, Knockout.js, even Unity. The error is:


Install failed. Rolling back...
The element 'http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd:authors' cannot contain child element 'http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd:author' because the parent element's content model is text only.

I have created an empty project and these all install fine. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

掩饰不了的爱 2024-11-21 17:27:54

我的猜测是,您使用旧版本的 Nuget 创建了项目,然后在向项目添加一些包后升级了 Nuget。较新版本的 Nuget 没有将作者作为authors 元素的子元素,而是以逗号分隔的字符串列表。

在这种情况下,解决方案是删除软件包并从packages.config 中手动编辑它们。

请参阅此问题以获取解释和解决方案。

My guess is that you have created the project with an older version of Nuget and then upgraded Nuget after adding some packages to the project. The newer versions of Nuget don't have the authors as child elements of the authors element, it's instead a comma separated list of strings.

In that case the resolution would be to delete the packages and manually edit them out from the packages.config.

See this issue for explanation and resolution.

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