BuildFeed/Global.asax.cs
2014-10-10 23:57:02 +01:00

27 lines
764 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace BuildFeed
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
BuildDateTimeModelBinder b = new BuildDateTimeModelBinder();
ModelBinders.Binders.Add(typeof(DateTime), b);
ModelBinders.Binders.Add(typeof(DateTime?), b);
}
}
}