// 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.Mvc; using Microsoft.AspNet.Mvc.Razor; 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 ConfigureRazorViewEngineOptions( [NotNull] this IServiceCollection services, [NotNull] Action setupAction) { services.Configure(setupAction); } } }