Removed erroneous NOT operator. (#24939)
parent
ece5ed32ce
commit
5e50316ca7
|
@ -93,7 +93,7 @@ builder.Services.ConfigureApplicationCookie(options =>
|
|||
|
||||
var app = builder.Build();
|
||||
|
||||
if (!app.Environment.IsDevelopment())
|
||||
if (app.Environment.IsDevelopment())
|
||||
{
|
||||
app.UseMigrationsEndPoint();
|
||||
}
|
||||
|
@ -115,4 +115,4 @@ app.MapRazorPages();
|
|||
|
||||
app.Run();
|
||||
#endregion
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue