After updating from beta 5 to beta 8 I can't set my custom login path in cookie authentication options.
services.AddCookieAuthentication(config =>
{
config.LoginPath = "/Auth/Login";
//or
//config.LoginPath = new Microsoft.AspNet.Http.PathString("Auth/Login");
});
This value is completely ignored. Still gets redirected to the default '/Account/Login'. Is there any other options to set this path?