昨夜、SignalR を自分のアプリケーションに実装してみることにしました。MVC 5 を使用しているため、SignalR の 2.0 ベータ版を使用する必要がありました。
そして、ああ、なんてタイミングだ。昨夜、Microsoft はすべての 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 からのドキュメントや更新されたテンプレートが見つかりません。