File: Startup.cs
Web Access
Project: src\src\Mvc\test\WebSites\ApplicationModelWebSite\ApplicationModelWebSite.csproj (ApplicationModelWebSite)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace ApplicationModelWebSite;
 
public class Startup
{
    // Set up application services
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddControllers(options =>
        {
            options.Conventions.Add(new ApplicationDescription("Common Application Description"));
            options.Conventions.Add(new ControllerLicenseConvention());
            options.Conventions.Add(new FromHeaderConvention());
            options.Conventions.Add(new MultipleAreasControllerConvention());
            options.Conventions.Add(new CloneActionConvention());
        });
 
        services.AddRazorPages();
    }
 
    public void Configure(IApplicationBuilder app)
    {
        app.UseRouting();
        app.UseEndpoints(endpoints =>
        {
            endpoints.MapControllerRoute(name: "areaRoute", pattern: "{area:exists}/{controller=Home}/{action=Index}");
            endpoints.MapControllerRoute(name: "default", pattern: "{controller}/{action}/{id?}");
 
            endpoints.MapRazorPages();
        });
    }
 
    public static void Main(string[] args)
    {
        var host = CreateWebHostBuilder(args)
            .Build();
 
        host.Run();
    }
 
    public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        new WebHostBuilder()
            .UseContentRoot(Directory.GetCurrentDirectory())
            .UseStartup<Startup>()
            .UseKestrel()
            .UseIISIntegration();
}