The name 'ConfigureAuth' does not exist in the current contex
问题 I'm getting an error when I'm attempting to run my page says that, The name 'ConfigureAuth' does not exist in the current context in my Stratup Class. I'm sure all AspNet Identity libraries are installed. What do I need to do next, to try to fix this? using Microsoft.Owin; using Owin; [assembly: OwinStartupAttribute(typeof(project_name.Startup))] namespace project_name { public partial class Startup { public void Configuration(IAppBuilder app) { ConfigureAuth(app); } } } 回答1: If you are using