asp.net-mvc – 不要在ASP .NET MVC 4 BundleConfig中缩小某些文件

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 不要在ASP .NET MVC 4 BundleConfig中缩小某些文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不想在我的ASP.NET MVC 4解决方案中使用我所有的文件.所以例如我在BundleConfig.cs中有这个:
bundles.Add(new StyleBundle("~/CSS/bootstrap").Include(
    "~/Content/Bootstrap/body.css","~/Content/Bootstrap/bootstrap-responsive.css","~/Content/Bootstrap/bootstrap-mvc-validation.css","~/Content/Bootstrap/bootstrap-theme.css","~/Content/Bootstrap/bootstrap.css"
    ));

...

而且为了减少它,当然我使用:

BundleTable.EnableOptimizations = true;

所以它的效果很好.

但是现在,除了一个捆绑包之外,我该怎么缩小我的所有文件?我有一个bundle的问题,删除一些CSS类,并且不想减少这个.

任何帮助将不胜感激.

解决方法

使用Transforms.Clear()来跳过缩小,但保持文件捆绑
//declare bundle
var bundle = new ScriptBundle("~/javascripts/ckEditor")
                .Include("~/Scripts/ckeditor/ckeditor.js")
                .Include("~/Scripts/ckeditor/config.js");

//skip transformation. Result is that files are only bundled,but not minified.
bundle.Transforms.Clear();

bundles.Add(bundle);

您还必须从目录中删除.min.js文件以防止替换

原文链接:https://www.f2er.com/aspnet/245855.html

猜你在找的asp.Net相关文章