我有这个:
bundles.Add(new StyleBundle("~/Content/Styles/Default").Include("~/Content/Styles/Default/Site.css"));
在我的网站上,我有这个:
@section Styles
{
@Styles.Render("~/Content/Styles/Default"))
}
我的 _Layout.cshtml 看起来像这样:
@RenderSection("Styles", true)
一切看起来都不错,嗯?嗯,不是真的。当我在发布模式下编译我的应用程序并决定发布它时,它呈现的是:
<link href="/Content/Styles/Default?v=78dkNySP_xsiuzsgxCx_GGnnHzYS-B8nNdnXqcl47XI1" rel="stylesheet">
它不是生成文件的href,而是生成某种id?指导?为什么?哦