// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.Extensions.DependencyInjection; namespace Microsoft.AspNetCore.Mvc { /// /// Configures the . Implement this interface to enable design-time configuration /// (for instance during pre-compilation of views) of . /// public interface IDesignTimeMvcBuilderConfiguration { /// /// Configures the . /// /// The . void ConfigureMvc(IMvcBuilder builder); } }