You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per aspnet/DependencyInjection#319, IServiceCollection.AddInstance was renamed to IServiceCollection.AddSingleton. This brings it inline with the other two AddSingleton extension methods:
Per aspnet/DependencyInjection#319,
IServiceCollection.AddInstance
was renamed toIServiceCollection.AddSingleton
. This brings it inline with the other twoAddSingleton
extension methods:serviceCollection.AddInstance(new MyService);serviceCollection.AddSingleton(new MyService());
Use aspnet/DependencyInjection#332 for further discussion
The text was updated successfully, but these errors were encountered: