i\'m trying this tutorial http://httpjunkie.com/2013/311/adding-mvc-5-identity-to-an-existing-project/ but is shows me an error Error 5 The name \'ConfigureAuth\' does
You have different namespaces in both files: namespace TicketSystem.App_Start
and namespace TicketSystem
. Make sure they are the same. Or alternatively add using statement: using TicketSystem.App_Start
in your startup.cs class.
If you check the example you'll see that both files are using the same namespace (namespace MVC5FullApp
)