如果你使用asp.net core 的网站,在使用dotnet publish命令发布是出现如下错误:
No executable found matching command "bower"
No executable found matching command "gulp"
那么你需要手动安装两个插件:
npm install -g bower
npm install -g gulp
然后就可以发布了。
当然,直接用vs2015发布没有问题。
本文介绍了解决ASP.NET Core网站发布过程中遇到的No executable found matching command错误的方法,通过手动安装bower和gulp插件即可成功发布。
如果你使用asp.net core 的网站,在使用dotnet publish命令发布是出现如下错误:
No executable found matching command "bower"
No executable found matching command "gulp"
那么你需要手动安装两个插件:
npm install -g bower
npm install -g gulp
然后就可以发布了。
当然,直接用vs2015发布没有问题。
1940

被折叠的 条评论
为什么被折叠?
