asp.net webforms 捆绑和缩小不适用于 .net framework 4.0

asp.net webforms Bundling and Minification not working with .net framework 4.0

我已经按照下面的教程配置了我的项目

http://igorzelmanovich.blogspot.co.uk/2012/09/using-aspnet-bundling-and-minification.html

我已经安装了所有需要的包。

一切正常。

而且我还在 chrome devloper 工具中看到捆绑,如下所示 http://localhost/JavaScriptLibraries/jQuery/js?v=ifJSwr5Uh90QHbVi_neoWhazO4vJ9Agrw2Mnj7L8myw1

但它在控制台中给出错误

加载资源失败:服务器返回状态 404(未找到) http://localhost/JavaScriptLibraries/jQuery/js?v=ifJSwr5Uh90QHbVi_neoWhazO4vJ9Agrw2Mnj7L8myw1

所以我的问题是 .net Framework 4.0 中的这种捆绑和缩小支持?

或者我必须升级到 4.5

<system.webServer>
 <modules>
   <remove name="BundleModule" />
   <add name="BundleModule" type="System.Web.Optimization.BundleModule" />
 </modules>
</system.webServer>

web 配置中的以上配置解决了我的问题。