8

我创建了一些主题 HtmlHelper 扩展,用于抓取主题目录中的 .css 和 .js 文件并将它们动态注册为包。但是,如果主题仅包含 .min.js 文件,则 Scripts.Render 输出在调试模式下为空。

在调试模式下,有没有办法在 Scripts.Render 的输出中包含 *.min.js 文件?

4

2 回答 2

15

弄清楚了。

BundleTable.Bundles.IgnoreList.Clear(); // apparently, IgnoreList included .min.js in debug
BundleTable.Bundles.IgnoreList.Ignore(".intellisense.js", OptimizationMode.Always);
BundleTable.Bundles.IgnoreList.Ignore("-vsdoc.js", OptimizationMode.Always);
BundleTable.Bundles.IgnoreList.Ignore(".debug.js", OptimizationMode.Always);
于 2012-09-19T02:35:58.543 回答
1

之前遇到同样的问题......我所做的只是将asp.net web优化升级到最新的alpha版本。

于 2013-04-01T15:21:41.107 回答