Upgrading Our Project to Bootstrap 4

In newer versions of Visual Studio, Bower has been removed. We'll look at upgrading our project to Bootstrap manually. If you are using ASP.NET Core 2.2 or newer, you may not have to do the following steps as these newer versions come with Bootstrap 4.

Follow these steps to our project to Bootstrap:

  1. Open _Layout.cshtml. Update your script references, as follows:
Go to https://goo.gl/GtuEk7 to access the code.
<!DOCTYPE html><html><head>...<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">...</body></html>

Note that we should add popper as ...

Get ASP.NET Core 2 Fundamentals now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.