/* * To make full use of FactoryFactory's additional functionality * provided through the Registry class, just change the line * public void ConfigureServices(IServiceCollection services) * to * public void ConfigureContainer(Registry services) * and you're done. Registry implements IServiceCollection anyways * so you can use the existing extension methods as well as the new * ones that FactoryFactory has to offer. */ public void ConfigureContainer(Registry services) { services.AddRazorPages(); }