I'm creating a new code-first project. When trying to create the migration, using the [Add-Migration Initial -Context LogAuditoriaContext] command it simply does nothing, does not create, does not give error, does not report anything:
I have tried to map with FluentAPI both in OnModelCreating () and in separate files, the result is the same.
Looking at the Output Window, it shows: ========== Build: 0 succeeded, 0 failed, 6 up-to-date, 0 skipped ==========
I'm using dot.net core 2.0 and C # 7.2.
UPDATEWiththetipsof@ArmindoGomes,Iwasabletodiscoverthattheproblemwastheconnectionstring,justchangethenameofLogAuditoriatoLogAuditoriaConnectionanditsreferencesinStartupandLogAuditoriaContext.