File: StartupWithoutEndpointRouting.cs
Web Access
Project: src\src\Mvc\test\WebSites\CorsWebSite\CorsWebSite.csproj (CorsWebSite)
// 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.Mvc;
 
namespace CorsWebSite;
 
public class StartupWithoutEndpointRouting : Startup
{
    public override void Configure(IApplicationBuilder app)
    {
        app.UseMvc();
    }
 
    protected override void ConfigureMvcOptions(MvcOptions options)
    {
        options.EnableEndpointRouting = false;
    }
}