mvc core 标签助手 TagHelper 只有core 支持
htmlhelper mvc、mvc core 都支持
Environment
<environment include="Development">
@*开发环境,使用不压缩的文件,排除压缩的文件*@
<link rel="stylesheet" asp-href-include="css/*" asp-href-exclude="~/lib/bootstrap/dist/css/bootstrap.min.css" />
</environment>
@*其他环境*@
<environment exclude="Development">
@*其他环境,使用压缩的文件*@
<link rel="stylesheet" asp-href-include="~/lib/bootstrap/dist/css/bootstrap.min.css" />
</environment>