Search code examples
asp.net-mvcasp.net-mvc-4appveyor

No executable found matching command "bower"


I run this command on AppVeyor:

 dotnet publish .\src\ReviewerServices.web -c Release

ReviewerServices.web is the folder containing my .NET MVC app and I want to create all the files to publish on IIS

Unfortunately, what I get is:

enter image description here

locally I get the same error. Do I need to install bower? npm install -g bower?


Solution

  • Ok, I had to install bower and gulp

    npm install -g bower
    npm install -g gulp