After upgrading to Bootstrap 4 my autocomplete (intellisense) isn't working correctly. It's still showing Bootstrap 3.
How can I make it work with Bootstrap 4?
After upgrading to Bootstrap 4 my autocomplete (intellisense) isn't working correctly. It's still showing Bootstrap 3.
How can I make it work with Bootstrap 4?
It appears that Visual Studio gets its autocomplete data from the files in wwwroot\lib\bootstrap\dist
. Refresh the files with these steps:
wwwroot\lib\bootstrap\dist
bower_components\bootstrap\dist
to:
wwwroot\lib\bootstrap\dist
You will also have to change any references in the code to point to the new version as well.
The following link helped me, so I am posting it here too. Actually it was asked before here, in stackoverflow