I executed:
dotnet ef migrations add init -c AppDbContext
The AppDbContext.cs is located in the:
migrations => application folder
but the created migration file 20180105_init.cs is created under the migratins folder directly.
WHY ?
Surely that behavior could be fixed by using this parameter:
--output-dir migrations\application
But that should work out of the box!