dotnet-module/README.md
2021-08-11 16:35:33 -04:00

381 B

Reasoning

Just makes it easier to organize modules with a class instead of a static extension method.

services
	.AddModule<SomeModule>()
	.AddModule<SomeOtherModule>();
public class MyModule : IModule 
{
	public IServiceCollection ConfigureServices(IServiceCollection services) 
	{
		services.AddModule<CoolOtherModule>();
		return services;
	}
}