ASP.NET Bundles如何禁用缩小

我debug="true"在我的web.config(s)中,我只是不希望我的捆绑缩小,但我没做什么似乎禁用它。我试过了enableoptimisations=false,这是我的代码:


//Javascript

bundles.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));


//CSS

bundles.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))


HUWWW
浏览 603回答 3
3回答

青春有我

如果您debug="true"在web.config中并且正在使用Scripts/Styles.Render引用页面中的包,那么应该关闭捆绑和缩小。BundleTable.EnableOptimizations = false将始终关闭捆绑和缩小(无论调试真/假标志)。你可能没有使用Scripts/Styles.Render助手吗?如果您通过直接呈现对包的引用,BundleTable.Bundles.ResolveBundleUrl()则始终会获得缩小/捆绑的内容。

慕妹3146593

条件编译指令是你的朋友:#if DEBUG            var jsBundle = new Bundle("~/Scripts/js");#else            var jsBundle = new ScriptBundle("~/Scripts/js");#endif
打开App,查看更多内容
随时随地看视频慕课网APP