Reputation: 1945
I just got the RTM release of VS2015 and I wanted to start with an empty project and while installing some nugets I see that jQuery isn't to be found on the disk.
I was expecting it to be placed in wwwroot but it's missing.
Has anyone else encountered this issue? Any fixes?
Upvotes: 2
Views: 5166
Reputation: 19725
jquery is installed as a bower dependency so it's on dependencies, bower.
you can see all your client script dependencies in bower.json
if it's not on disk, it will after you do dnu restore
Upvotes: 0
Reputation: 4570
You can get it through Nuget Package manager console,If your project is not a web project.If your project a web project then check under content/scripts.If there also you can't find it,then install jquery manually.
Upvotes: 0
Reputation: 2602
It depends on the type of project you chose. If you chose a web project it should be under content/scripts. Otherwise just use package manager console and install it:
install-package jquery
Upvotes: 1