jhorsman
12/8/2016 - 2:06 PM

Minimal DXA 1.6 Core area registration. Without this the DXA webapp cannot use the framework controllers. Those controllers are not in the c

Minimal DXA 1.6 Core area registration. Without this the DXA webapp cannot use the framework controllers. Those controllers are not in the core module, but are in the ControllerAreaName "Core"

namespace MyWebApp.Web.Site.Areas.Core
{
    using Sdl.Web.Common.Models;
    using Sdl.Web.Mvc.Configuration;

    public class CoreAreaRegistration : BaseAreaRegistration 
    {
        public override string AreaName => "Core";

        protected override void RegisterAllViewModels()
        {
        }
    }
}