mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-10 15:48:01 +08:00
24 lines
696 B
C#
24 lines
696 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Http;
|
|
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
|
|
namespace OpenAuth.Web
|
|
{
|
|
// 注意: 有关启用 IIS6 或 IIS7 经典模式的说明,
|
|
// 请访问 http://go.microsoft.com/?LinkId=9394801
|
|
public class MvcApplication : System.Web.HttpApplication
|
|
{
|
|
protected void Application_Start()
|
|
{
|
|
AreaRegistration.RegisterAllAreas();
|
|
|
|
WebApiConfig.Register(GlobalConfiguration.Configuration);
|
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
}
|
|
}
|
|
} |