我正在使用ASP.NET Core MVC(RTM Preview 2版本)。
我已将文件bower.json插入到我的项目中,并为bootstrap配置了依赖项设置,如下所示。
{
"name": "AspNetBlog",
"private": true,
"dependencies": {
"bootstrap": "^3.3.7"
}
}
由于某种原因,我的项目中没有文件夹“Dependencies”。
因此不会在其中插入引导依赖项。
你能告诉我这个项目出现这种行为的原因是什么吗? 有没有办法解决这个问题?
答案 0 :(得分:0)
您应该使用bower install命令安装软件包:
# installs the project dependencies listed in bower.json
$ bower install