Skip to content

Instantly share code, notes, and snippets.

@clausjensen
Created May 24, 2016 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save clausjensen/f664669c0fe2b99a6f37224a52562df1 to your computer and use it in GitHub Desktop.
Save clausjensen/f664669c0fe2b99a6f37224a52562df1 to your computer and use it in GitHub Desktop.
private void IocRegistration(ApplicationContext applicationContext)
{
var container = new ServiceContainer();
container.RegisterControllers(typeof (UmbracoApplication).Assembly);
container.RegisterApiControllers(typeof (UmbracoApplication).Assembly);
container.RegisterControllers(typeof (Umbraco.Forms.Web.Trees.DataSourceTreeController).Assembly);
container.RegisterApiControllers(typeof (Umbraco.Forms.Web.Trees.DataSourceTreeController).Assembly);
container.RegisterControllers(typeof (Diplo.TraceLogViewer.Controllers.TraceLogTreeController).Assembly);
container.RegisterApiControllers(typeof (Diplo.TraceLogViewer.Controllers.TraceLogTreeController).Assembly);
container.RegisterControllers(typeof(Merchello.Web.Mvc.MerchelloRenderMvcController).Assembly);
container.RegisterApiControllers(typeof(Merchello.Web.WebApi.MerchelloApiController).Assembly);
container.EnableMvc();
container.EnableWebApi(GlobalConfiguration.Configuration);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment