Skip to content

Instantly share code, notes, and snippets.

@changhuixu
Created July 24, 2020 04:40
Show Gist options
  • Save changhuixu/86dd99ea12e2e6083d1389fa05895e8c to your computer and use it in GitHub Desktop.
Save changhuixu/86dd99ea12e2e6083d1389fa05895e8c to your computer and use it in GitHub Desktop.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
// ...
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment