How can we enable caching for Bundles in MVC5
问题 I have created 2 bundles in my mvc project as given below: public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBundle("~/Scripts/BaseScripts").Include( "~/Content/js/jquery-{version}.js", "~/Content/js/jquery-ui-{version}.js", "~/Scripts/jquery.unobtrusive-ajax.min.js", "~/Content/js/bootstrap.js", "~/Content/js/bootstrap-datepicker.js", "~/Scripts/jquery.validate.min.js", "~/Scripts/jquery.validate.unobtrusive.js", "~/Scripts/customvalidation.js" ) ); bundles