From de9a35cec68190e7cb8be0dbdf365f7bb3da80cc Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Tue, 2 Jan 2018 15:44:04 -0800 Subject: [PATCH] React to breaking change in MVC /cc @javiercn --- .../IdentityDefaultUIConfigureOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.Identity.UI/IdentityDefaultUIConfigureOptions.cs b/src/Microsoft.AspNetCore.Identity.UI/IdentityDefaultUIConfigureOptions.cs index 1aec877c8d..a78fcc33aa 100644 --- a/src/Microsoft.AspNetCore.Identity.UI/IdentityDefaultUIConfigureOptions.cs +++ b/src/Microsoft.AspNetCore.Identity.UI/IdentityDefaultUIConfigureOptions.cs @@ -26,7 +26,7 @@ namespace Microsoft.AspNetCore.Identity.UI public IHostingEnvironment Environment { get; } - public void Configure(RazorPagesOptions options) => options.EnableAreas = true; + public void Configure(RazorPagesOptions options) => options.AllowAreas = true; public void Configure(RazorViewEngineOptions options) => options.FileProviders.Add(new ManifestEmbeddedFileProvider(GetType().Assembly));