Unravel will try to enable as much of ASP.NET Core as possible. (Experimental!)
Extending IMvcBuilder
and IMvcCoreBuilder
:
AddAspNetMvcViewEngines()
registers the ASP.NET compiler as an ASP.NET Core view engine.- The ASP.NET Core view engine is incompatible with legacy projects, as are new features like Tag Helpers.
public override void ConfigureServices(IServiceCollection services)
{
services.AddMvc()
.AddAspNetMvcViewEngines();
}