昨晚,我决定尝试在我的应用程序中实现 SignalR,因为我使用的是 MVC 5,所以我不得不使用 SignalR 的 2.0 beta。
哦,男孩,多么好的时机。昨晚,微软还决定推出他们所有与 mvc 5 相关的软件包的 rc1,并且更新破坏了一些东西 - 主要是在 beta2 模板中的帐户控制器中。
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
并且IdentityAuthenticationManager
不再被认可。
有人成功迁移到 rc1 了吗?我从 MS 中找不到任何文档或更新的模板。