使用 html 页面进行捆绑和缩小

Bundle and minification with html page

我在我的项目中使用 asp.net 4.5 捆绑和缩小。我想在 html 页面中使用 jscripts 包。我试过没有成功

@Scripts.Render("~/bundles/jquery")

<script src="~/bundles/jquery" type="text/javascript"></script>

@Scripts.RenderFormat("
  <script type=\"text/javascript\" src=\"{0}\"></script>", "~/bundles/jquery")

我的问题是,是否可以在 html 页面中使用 jscripts 或 CSS 包?

不,您不能在静态 HTML 页面中使用捆绑包。该页面将按原样提供。

如果您想利用捆绑和缩小功能,您将需要使用剃须刀 .cshtml 视图。