18 lines
644 B
C#
18 lines
644 B
C#
using System.Web.Optimization;
|
|
|
|
namespace EnVisage
|
|
{
|
|
public class BundleConfig
|
|
{
|
|
public static void RegisterBundles(BundleCollection bundles)
|
|
{
|
|
bundles.Add(new ScriptBundle("~/bundles/angular-app-modules")
|
|
.Include("~/Scripts/Angular/angular.js",
|
|
"~/Scripts/Angular/angular-route.js",
|
|
"~/Scripts/Angular/xeditable.js",
|
|
"~/Scripts/Angular/select.js",
|
|
"~/Scripts/Angular/angular-dnd.js",
|
|
"~/Scripts/Angular/enVisageServices.js"));
|
|
}
|
|
}
|
|
} |