Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Erro ao executar Add-Migration

Olá Ao executar o comando Add-Migration no PM exibe o erro abaixo.

PM> Add-Migration Inicial
Add-Migration : The term 'Add-Migration' 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, verify that the path is correct and try again.
At line:1 char:1
+ Add-Migration Inicial
+ ~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Add-Migration:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
1 resposta
solução!

Olá

Pesquisei na internet e encontrei uma solução. Caso alguém mais tenha esse problema eu resolvi dessa maneira.

Criei um arquivo com o nome project.json e adicionei o seguinte código.

{
  "dependencies": {
    "Microsoft.EntityFrameworkCore.Tools": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    }
  }
}

Restartei o VS2017 e executei novamente o comando Add-Migration e funcionou.