AccountManagement.BundleConfig.RegisterBundles C# (CSharp) Method

RegisterBundles() public static method

public static RegisterBundles ( BundleCollection bundles ) : void
bundles BundleCollection
return void
        public static void RegisterBundles(BundleCollection bundles)
        {
            bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
                        "~/Scripts/jquery-{version}.js"));

            bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
                        "~/Scripts/jquery-ui-{version}.js"));

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

            // Use the development version of Modernizr to develop with and learn from. Then, when you're
            // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
            bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
                        "~/Scripts/modernizr-*"));
            bundles.Add(new ScriptBundle("~/bundles/modernizrf").Include(
                        "~/Scripts/stylesheets.foundation/modernizr.foundation.js"));
            bundles.Add(new StyleBundle("~/Content/stylesheets.foundation/").Include("~/Content/stylesheets.foundation/foundation.min.css"));
            bundles.Add(new StyleBundle("~/Content/stylesheets.foundation/").Include("~/Content/stylesheets.foundation/app.css"));
            bundles.Add(new StyleBundle("~/Content/stylesheets.foundation/").Include("~/Content/stylesheets.foundation/style.css"));
            bundles.Add(new StyleBundle("~/Content/stylesheets.foundation/").Include("~/Content/stylesheets.foundation/foundation.css"));
            bundles.Add(new StyleBundle("~/Content/stylesheets.foundation/").Include("~/Content/stylesheets.foundation/general_foundicons.css"));
            bundles.Add(new StyleBundle("~/Content/stylesheets.foundation/").Include("~/Content/stylesheets.foundation/general_foundicons_ie7.css"));

            bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
                        "~/Content/themes/base/jquery.ui.core.css",
                        "~/Content/themes/base/jquery.ui.resizable.css",
                        "~/Content/themes/base/jquery.ui.selectable.css",
                        "~/Content/themes/base/jquery.ui.accordion.css",
                        "~/Content/themes/base/jquery.ui.autocomplete.css",
                        "~/Content/themes/base/jquery.ui.button.css",
                        "~/Content/themes/base/jquery.ui.dialog.css",
                        "~/Content/themes/base/jquery.ui.slider.css",
                        "~/Content/themes/base/jquery.ui.tabs.css",
                        "~/Content/themes/base/jquery.ui.datepicker.css",
                        "~/Content/themes/base/jquery.ui.progressbar.css",
                        "~/Content/themes/base/jquery.ui.theme.css"));
        }
BundleConfig