Reputation: 9054
I have created a project in ASP.Net MVC 6 and I added bower in my project
when I want to use jQuery in my project it some how goes but it give error in directory
my bower.json file code:
{
"name": "ASP.NET",
"private": true,
"dependencies": {
"underscore": "~1.8.3",
"jquery": "~2.2.1"
}
}
but in directory it give blow error in VS 2015
Bower not installed
jquery - not installed
any solutions?
best
Upvotes: 2
Views: 942
Reputation: 9054
My issue was solved when I clicked on Bower and restored it and rebuild my solution, the error gone away.
Upvotes: 1