Bundling and Minification in MVC Application Example

Bundling and Minification in MVC Application Example

If you want enable to bundling and minification for Js and css files in MVC Application that time we set Enable Optimizations is true. i.e.

BundleTable.EnableOptimizations = true;

If you want disable to bundling and minification for Js and css files  in MVC Application that time we set Enable Optimizations is false. i.e.

BundleTable.EnableOptimizations = false;

Example in details as given below

Step-1

    public class BundleConfig
    {
        // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
        public static void RegisterBundles(BundleCollection bundles)
        {
            bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
                        "~/Scripts/jquery-{version}.js"));

            bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
                        "~/Scripts/jquery.validate*"));

            //Enable to Bundling.
            BundleTable.EnableOptimizations = true;

            //Disable to Bundling.
            BundleTable.EnableOptimizations = false;

        }
    }

On Global.aspx page

Step-2

     protected void Application_Start()
     {
            BundleConfig.RegisterBundles(BundleTable.Bundles);
     }

Step-3

On cshtml Page use like below

@Scripts.Render("~/bundles/ jquery ")


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^