Last night I decided to try and apply SignalR to my application, but because I use MVC 5, I had to use beta 2.0 SignalR.
And oh boy, what time. Last night, Microsoft also decided to release rc1 for all of its mvc 5-related packages, and the update broke several things - mainly in the account controller, which is in the beta2 template.
public AccountController() { IdentityStore = new IdentityStoreManager(); AuthenticationManager = new IdentityAuthenticationManager(IdentityStore); } public AccountController(IdentityStoreManager storeManager, IdentityAuthenticationManager authManager) { IdentityStore = storeManager; AuthenticationManager = authManager; } public IdentityStoreManager IdentityStore { get; private set; } public IdentityAuthenticationManager AuthenticationManager { get; private set; }
IdentityStoreManager and IdentityAuthenticationManager no longer recognized.
Has anyone successfully migrated to rc1? I can not find documentation or updated templates from MS.
Inrego Aug 24 '13 at 9:17 2013-08-24 09:17
source share