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.
By clicking “Sign up for GitHub”, you agree to our
terms of service
and
privacy statement
. We’ll occasionally send you account related emails.
Already on GitHub?
Sign in
to your account
Per
aspnet/DependencyInjection#319
,
IServiceCollection.AddInstance
was renamed to
IServiceCollection.AddSingleton
. This brings it inline with the other two
AddSingleton
extension methods:
serviceCollection.AddInstance(new MyService);
serviceCollection.AddSingleton(new MyService());
Use
aspnet/DependencyInjection#332
for further discussion