Gerenciador de pacotes Console Enable-Migrations CommandNotFoundException somente em um projeto VS específico

Eu tentei executar o comando 'Enable-Migrations' em um novo projeto e recebi a mensagem:

<code>PM> Enable-Migrations
The term 'Enable-Migrations' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verif
y that the path is correct and try again.
At line:1 char:18
+ Enable-Migrations <<<< 
    + CategoryInfo          : ObjectNotFound: (Enable-Migrations:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
</code>

Mas em todos os outros projetos, o comando é executado muito bem.

Por que isso está acontecendo?

BTW, estou usando o VS2010 Professional SP1

EDITAR: Eu reinstalei com o comando:Install-Package EntityFramework -IncludePrerelease e o problema foi embora.

questionAnswers(20)

yourAnswerToTheQuestion