Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 748 Bytes

File metadata and controls

16 lines (12 loc) · 748 Bytes

Unravel.AspNetCore.Mvc

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();
}