67 lines
2.4 KiB
C#
67 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Optimization;
|
|
|
|
namespace MoonPro
|
|
{
|
|
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/Global").Include(
|
|
"~/Scripts/jquery-{version}.js",
|
|
"~/Scripts/jquery-ui.js"));
|
|
|
|
bundles.Add(new ScriptBundle("~/bundles/GlobalHead").Include(
|
|
"~/Scripts/modernizr*"));
|
|
|
|
bundles.Add(new StyleBundle("~/Content/Global").Include(
|
|
"~/Content/bootstrap.css",
|
|
"~/Content/Style.css"));
|
|
|
|
|
|
|
|
//bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
|
|
// "~/Scripts/bootstrap.js"));
|
|
|
|
//bundles.Add(new StyleBundle("~/Content/css").Include(
|
|
// "~/Content/bootstrap.css",
|
|
// "~/Content/Style.css"));
|
|
|
|
//bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
|
|
// "~/Scripts/jquery-{version}.js"));
|
|
|
|
bundles.Add(new ScriptBundle("~/bundles/vis").Include(
|
|
"~/vis/vis.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*"));
|
|
|
|
//bundles.Add(new ScriptBundle("~/bundles/WebFormsJs").Include(
|
|
// "~/Scripts/WebForms/WebForms.js",
|
|
// "~/Scripts/WebForms/WebUIValidation.js",
|
|
// "~/Scripts/WebForms/MenuStandards.js",
|
|
// "~/Scripts/WebForms/Focus.js",
|
|
// "~/Scripts/WebForms/GridView.js",
|
|
// "~/Scripts/WebForms/DetailsView.js",
|
|
// "~/Scripts/WebForms/TreeView.js",
|
|
// "~/Scripts/WebForms/WebParts.js"));
|
|
|
|
//bundles.Add(new ScriptBundle("~/bundles/MsAjaxJs").Include(
|
|
// "~/Scripts/WebForms/MsAjax/MicrosoftAjax.js",
|
|
// "~/Scripts/WebForms/MsAjax/MicrosoftAjaxApplicationServices.js",
|
|
// "~/Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js",
|
|
// "~/Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js"));
|
|
|
|
//bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
|
|
// "~/Scripts/modernizr-*"));
|
|
}
|
|
}
|
|
} |