我debug="true"在我的web.config(s)中,我只是不希望我的捆绑缩小,但我没做什么似乎禁用它。我试过了enableoptimisations=false,这是我的代码://Javascriptbundles.Add(new ScriptBundle("~/bundles/MainJS") .Include("~/Scripts/regular/lib/mvc/jquery.validate.unobtrusive.js*") .Include("~/Scripts/regular/lib/mvc/jquery.validate*") .Include("~/Scripts/regular/lib/bootstrap.js") .IncludeDirectory("~/Scripts/regular/modules", "*.js", true) .IncludeDirectory("~/Scripts/regular/pages", "*.js", true) .IncludeDirectory("~/Scripts/regular/misc", "*.js", true));//CSSbundles.Add(new StyleBundle("~/bundles/MainCSS") .Include("~/Content/css/regular/lib/bootstrap.css*") .IncludeDirectory("~/Content/css/regular/modules", "*.css", true) .IncludeDirectory("~/Content/css/regular/pages", "*.css", true))
3 回答
青春有我
TA贡献1784条经验 获得超8个赞
如果您debug="true"
在web.config中并且正在使用Scripts/Styles.Render
引用页面中的包,那么应该关闭捆绑和缩小。BundleTable.EnableOptimizations = false
将始终关闭捆绑和缩小(无论调试真/假标志)。
你可能没有使用Scripts/Styles.Render
助手吗?如果您通过直接呈现对包的引用,BundleTable.Bundles.ResolveBundleUrl()
则始终会获得缩小/捆绑的内容。
慕妹3146593
TA贡献1820条经验 获得超9个赞
条件编译指令是你的朋友:
#if DEBUG
var jsBundle = new Bundle("~/Scripts/js");
#else
var jsBundle = new ScriptBundle("~/Scripts/js");
#endif
- 3 回答
- 0 关注
- 596 浏览
添加回答
举报
0/150
提交
取消