50 строки
2.4 KiB
C#
50 строки
2.4 KiB
C#
#region Copyright Syncfusion Inc. 2001-2019.
|
|
// Copyright Syncfusion Inc. 2001-2019. All rights reserved.
|
|
// Use of this code is subject to the terms of our license.
|
|
// A copy of the current license can be obtained at any time by e-mailing
|
|
// licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
// applicable laws.
|
|
#endregion
|
|
using System.Web;
|
|
using System.Web.Optimization;
|
|
|
|
namespace MVCSampleBrowser
|
|
{
|
|
public class BundleConfig
|
|
{
|
|
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
|
|
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 StyleBundle("~/Content/css").Include("~/Content/site.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"));
|
|
}
|
|
}
|
|
} |