using Microsoft.AspNetCore.SpaServices.Prerendering; namespace Microsoft.Extensions.DependencyInjection { /// /// Extension methods for setting up prerendering features in an . /// public static class PrerenderingServiceCollectionExtensions { /// /// Configures the dependency injection system to supply an implementation /// of . /// /// The . public static void AddSpaPrerenderer(this IServiceCollection serviceCollection) { serviceCollection.AddHttpContextAccessor(); serviceCollection.AddSingleton(); } } }