Skip to content

Instantly share code, notes, and snippets.

@ypcode
Created December 28, 2017 00:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ypcode/756c5b6ca7060c52dfc4ecc3760665e6 to your computer and use it in GitHub Desktop.
Save ypcode/756c5b6ca7060c52dfc4ecc3760665e6 to your computer and use it in GitHub Desktop.
Configure WebAPI
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace spaddin_webapiWeb
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
// Make sure to include this before the RouteConfig.RegisterRoutes() call
GlobalConfiguration.Configure(WebApiConfig.Register);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment