Files
MoonPro.net/MP-Site/App_Start/BundleConfig.cs
T
Samuele E. Locatelli 0cb989f310 refresh link a js
2018-06-08 01:10:01 +02:00

55 lines
2.0 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/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-*"));
}
}
}