Skip to content

Commit

Permalink
Don't use ModularStartup
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Sep 9, 2020
1 parent 1e60840 commit 72b6cb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MyApp.Api/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(builder =>
{
builder.UseModularStartup<Startup>();
builder.UseStartup<Startup>();
});
}
}
2 changes: 1 addition & 1 deletion MyApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(builder =>
{
builder.UseModularStartup<Startup>();
builder.UseStartup<Startup>();
});
}
}

0 comments on commit 72b6cb5

Please sign in to comment.