File: StartupWithoutEndpointRouting.cs
Web Access
Project: src\src\Identity\testassets\Identity.DefaultUI.WebSite\Identity.DefaultUI.WebSite.csproj (Identity.DefaultUI.WebSite)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
 
namespace Identity.DefaultUI.WebSite;
 
public class StartupWithoutEndpointRouting : StartupBase<IdentityUser, IdentityDbContext>
{
    public StartupWithoutEndpointRouting(IConfiguration configuration) : base(configuration)
    {
    }
 
    public override void ConfigureServices(IServiceCollection services)
    {
        base.ConfigureServices(services);
        services.AddMvc(options => options.EnableEndpointRouting = false);
        services.AddDatabaseDeveloperPageExceptionFilter();
    }
 
    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public override void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        // This prevents running out of file watchers on some linux machines
        DisableFilePolling(env);
 
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
            app.UseMigrationsEndPoint();
        }
        else
        {
            app.UseExceptionHandler("/Error");
            app.UseHsts();
        }
 
        app.UseAuthentication();
 
        app.UseHttpsRedirection();
        app.UseStaticFiles();
        app.UseCookiePolicy();
 
        app.UseMvc();
    }
}