// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNet.Routing; using Microsoft.Framework.Internal; namespace Microsoft.Framework.DependencyInjection { /// /// Contains extension methods to . /// public static class ServiceCollectionExtensions { /// /// Configures a set of for the application. /// /// The services available in the application. /// An action to configure the . public static void ConfigureRouteOptions( this IServiceCollection services, [NotNull] Action setupAction) { services.Configure(setupAction); } } }