停止样式捆绑添加 xml 关闭

Stop style bundling adding xml closing

使用 mvc 样式包时:

@Styles.Render("~/content/site")

它将始终使用自闭标记呈现您的样式表:

<link href="/Content/Site.css" rel="stylesheet"/>

有什么办法可以阻止吗?

使用@Styles.RenderFormat:

@Styles.RenderFormat(@"<link href=""{0}"" rel=""stylesheet""></link>",
                      "~/content/site")