VS无法找到NuGet包

时间:2016-03-19 07:54:35

标签: visual-studio npm nuget

参考: https://www.npmjs.com/package/pixplorer-api 在哪里使用pixplorer api它需要你下载pixplorer-api包。此处显示该软件包有211次下载。 但是,在搜索'pixplorer-api'后,Visual Studio中的Nuget包管理器没有显示结果。 任何提示将不胜感激

1 个答案:

答案 0 :(得分:0)

您正在浏览的软件包是Node的NPM软件包。存在节点包的事实并不意味着存在等效的NuGet包。不幸的是,它们是两件不同的东西。

Nuget.org says there is no such packageenter image description here

这意味着Visual Studio会向您显示相同的消息。

如果要将NPM软件包安装到Visual Studio项目中,则需要为Visual Studio安装任务运行器并设置package.json

另请参阅:Introducing Gulp, Grunt, Bower and NPM support for Visual Studio

相关问题