dotnet-module/README.md

21 lines
377 B
Markdown
Raw Normal View History

2021-08-11 15:27:39 -04:00
# Reasoning
Just makes it easier to organize modules with a class instead of a static extension method.
```csharp
services
.AddModule<SomeModule>()
.AddModule<SomeOtherModule>();
```
```csharp
public class MyModule : IModule
{
public IServiceCollection ConfigureServices(IServiceCollection services)
{
services.AddOtherDependantModule();
return services;
}
}
```