NServiceBus
NServiceBus copied to clipboard
Added usefull guidance to RegisterComponents obsoletes
Added
Ensure to explicitly register all interfaces of a given type.
That hopefully prevents users from converting:
configuration.RegisterComponents(c => c.ConfigureComponent<StatisticsUoW>(DependencyLifecycle.SingleInstance));
into:
configuration.RegisterComponents(c => c.AddSingleton<IManageUnitsOfWork, StatisticsUoW>());
and not into:
configuration.RegisterComponents(c => c.AddSingleton<StatisticsUoW>());