22 lines
625 B
C#
22 lines
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
using System.Web.Security;
|
|
using System.Web.SessionState;
|
|
using System.Web.Http;
|
|
|
|
namespace WebDAVSharp.WebServer {
|
|
public class Global : HttpApplication
|
|
{
|
|
void Application_Start(object sender, EventArgs e)
|
|
{
|
|
// Code that runs on application startup
|
|
AreaRegistration.RegisterAllAreas();
|
|
GlobalConfiguration.Configure(WebApiConfig.Register);
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
}
|
|
}
|
|
} |