아침 내내이 문제를 해결했습니다. 저는 여기에 지적 된 링크가 있고 난 여전히 운이없는 오전 :Nuget 패키지를 업데이트 한 후 AuthenticationIdentityManager를 찾을 수 없습니다 (vs2013 미리보기)
http://www.asp.net/visual-studio/overview/2013/release-notes-(release-candidate)
https://stackoverflow.com/a/18426574/1118218 (나는 모든 것을 허용 대답에서 알 않았다)
https://stackoverflow.com/a/18419011/1118218 (위와 같은 질문,하지만 솔루션을 여기도 작동하지 않았고 수업을 해결하지 못했습니다)
새로 고침 된 ASPNET 웹 도구가 설치되었습니다. 다시 시작된 비주얼 스튜디오. AccountController를 제외하고 모든 것이 올바르게 빌드 된 것 같습니다. AuthenticationIdentityManager (및 IdentityStore)를 찾을 수 없습니다.
[Authorize]
public class AccountController : Controller
{
public AccountController()
{
IdentityManager = new AuthenticationIdentityManager(new IdentityStore());
}
public AccountController(AuthenticationIdentityManager manager)
{
IdentityManager = manager;
}
public AuthenticationIdentityManager IdentityManager { get; private set; }
}
어떻게하면 좋을까요? ASP.NET Identity, Owin, EF 및 MVC와 관련된 모든 nuget 패키지는 최신 시험판 버전으로 업데이트됩니다.