I'm having two mvc-applications I need to debug at same time with different userLogins.
The two apps does not share any database or anything else.
The problem is: When I debug both apps at same time, and then login a user in app1 (default AspNet.Identity by the way). Then after that, I login a different user in app2. When I then go back to app1 and refresh the page, the user that is logged in in app2 gets logged in in app1.
So, is this is bug or how can I fix so I can be logged in as different users in my two apps?
EDIT: It works when I have the apps in different browsers (one in chrome and one in firefox)