Initial commit
This commit is contained in:
17
PartSource/Global.asax.cs
Normal file
17
PartSource/Global.asax.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Web;
|
||||
using System.Web.Http;
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace PartSource
|
||||
{
|
||||
public class WebApiApplication : HttpApplication
|
||||
{
|
||||
protected void Application_Start()
|
||||
{
|
||||
AreaRegistration.RegisterAllAreas();
|
||||
GlobalConfiguration.Configure(new Action<HttpConfiguration>(WebApiConfig.Register));
|
||||
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user