mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
24 lines
693 B
C#
24 lines
693 B
C#
using System;
|
|
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);
|
|
}
|
|
}
|
|
}
|