-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrations are not working on latest MyGet feed #4414
Comments
I am not able to repro this. Could you share more information about your project/workflow? (e.g. your |
Hi @bricelam services.AddEntityFramework().AddSqlite()
.AddDbContext<LocalizationModelSqliteContext>(options =>
options.UseSqlite(sqlConnectionString)); 'Microsoft.EntityFrameworkCore.Commands' does not contain a 'Program' type suitable for an entry point // Entry point for the application.
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseDefaultConfiguration(args)
.UseIISPlatformHandlerUrl()
.UseStartup<Startup>()
.Build();
host.Run();
}
Greetings Damien |
Ah yes, the DNX commands are gone. We're transitioning to .NET Core CLI. See #3925 |
I recommend using the RC1 release during the transition. |
OK, thanks, I'll see if I can build the .NET Core CLI Should I close this then? Greetings Damien |
To clarify, they don't exist for CLI yet either (see PR #4381) 😄 |
😄 Thanks |
Closing this out as our nightly builds are not in a state that can be used by external folks due to the transition to .NET CLI. We'll adjust Wiki to reflect this. |
The following service registers are missing in the latest core version from MyGet
IMigrator
and all its child interfaces
Any ideas what's missing?
Greetings Damien
The text was updated successfully, but these errors were encountered: