I am moving my web application from ASP.NET Core RC1 to RC2. RC2 IServiceCollection no longer has the AddInstance method. How to get a registered configuration?
Here's how it was done in RC1
public class Startup { public IConfiguration Configuration { get; set; } public void ConfigureServices(IServiceCollection services) {
source share