3

I installed Bootstrap 4.x by Manage NuGet Packages, but bootstrap files does not show for referencing. I work by Visual Studio 2017.

What is it wrong?! How can I fix it?enter image description here

x19
  • 8,277
  • 15
  • 68
  • 126

2 Answers2

-1

The Bower package manager is dead for many reasons, but for now you can use package.json instead of bower.json.

If you don't have it, generate it with npm init and then install your package like this:

npm install --save jquery
Andrew Myers
  • 2,754
  • 5
  • 32
  • 40
-1

Nuget packages download Javascript files to ~/Scripts and download the Bootstrap CSS files to ~/Content. Unfortunately, NuGet doesn't appear to allow you to change the default position of where it puts the files, so you just have to live with it, and carry on.

Vince Pike
  • 620
  • 6
  • 13