Core
General
Start-up
๐ทย Host Builders
A host is the container that holds an apps resources, such as: DI, logging, config, life cycle, and IHostedService implementations.
IHostedService can be anything a background task, or a web-api. It is just something that the Host runs.
We can use a host builder allows us to configure this host. When we Build we will get in return an IHost, which we can then Run.
Configuration
Helper
Other stuff
Web Application
Worker Service