Deserialising .NET Core Configuration Settings
With System.Configuration.dll
, we can add custom configSections
into either App.config
or Web.config
files so that we can utilise strongly-typed configuration objects. On the other hand, .NET Core applications have replaced those App.config
or Web.config
with appsettings.json
, which is more convenient for developers to use, especially for dependency injection (DI). In this post, we are going to walkthrough how we can deserialise the appsettings.json
for DI purpose.
Basics
When we create an ASP.NET Core web application, we have a basic appsettings.json
… [Keep reading] “Deserialising .NET Core Configuration Settings”