2

我没有使用 asp.net mvc 的捆绑和缩小功能,我想知道是否可以完全关闭它。我已经做了

BundleTable.EnableOptimizations = false;

但是我仍然在运行时在模块列表中看到该模块。

任何想法?

谢谢

4

2 回答 2

0

您可以通过 web.config 文件将其删除:

<modules>
  <remove name="BundlingModule" /> <!-- not 100% sure on the name, you might need to look that up -->
</modules>
于 2013-05-23T10:07:33.763 回答
0

你不能删除它。动态模块 BundleModule 在程序集信息中定义[assembly: PreApplicationStartMethod(typeof(System.Web.Optimization.PreApplicationStartCode), "Start")]

因此,在加载程序集时,PreApplicationStart 会确保定义了模块。

于 2016-05-04T00:44:36.743 回答