How to properly read nested configuration values from config.json in ASP.NET5?
That’s the convention that we decided upon when we first created the configuration model. We started with json in mind and : is the delimiter there. Anyways, if you don’t want to worry about those conventions, I recommend using the ConfigurationBinder which binds a configuration to a model (a strong type object). Here are the … Read more