Namespacing and Solution Structuring
The bigger a Visual Studio solution gets the more important ist a good structure.
Modern Software Development in .NET Core and .NET Standard
The bigger a Visual Studio solution gets the more important ist a good structure.
Dependency injection is a great tool to decouple your software architecture and manage your dependency graph. At the most fundamental level dependency injection means handing dependencies, ideally as abstractions rather than concretions, as a parameter of some sort instead of directly coupling them to the consuming logic. This allows to define a foundation for a […]