Visual Studio 2017 (15.5.2) is missing in the dependencies

So, I just installed a clean version of Windows 10 and the Visual Studio 2017 community.

Trying to create a completely new ASP.NET Core 2.0 project, I saw what was Bowermissing in Dependenciesnode.

enter image description here

Bootstrapand the jquerypackages are already installed, but I can’t manage them and can’t find the configuration file.

I searched the Internet for this problem, but did not find anything useful.

Is there a problem with updating VS 15.5.2? How can i fix this?

+4
source share
1 answer

, , Manage Bower Packages , bower (bower.json) .

bower.json .bowerrc ( ), :

{
  "name": "asp.net",
  "private": true,
  "dependencies": {
  }
}
Hide result

{
  "directory": "wwwroot/lib"
}
Hide result

Mads Kristensen (SHIFT + F2) -Essentials (), .

, bower.json.

enter image description here

enter image description here

+2

Source: https://habr.com/ru/post/1690906/


All Articles