VS2017 - 添加Bootstrap不会安装文件

时间:2018-03-20 09:51:07

标签: c# twitter-bootstrap visual-studio .net-core

我刚刚通过Nuget包管理器安装了Bootstrap,虽然Bootstrap似乎在Dependencies区域内,但我的项目中没有添加其他文件。请参见附件截图。使用Visual Studio 2017 Pro

enter image description here

问题似乎与:

有关

Manually Install Bootstrap in Visual Studio

有什么想法吗?感谢

1 个答案:

答案 0 :(得分:0)

您可以尝试使用npm配置文件

并在此文件中编写以下代码:

{
  "version": "1.0.0",
  "name": "asp.net",
  "private": true,
  "devDependencies": {
    "bootstrap": "4.1.1"
  }
}

要使用引导程序,请编写以下代码:

<link rel="stylesheet" href="~/node_modules/bootstrap/dist/css/bootstrap.min.css" />