Add this text to appsettings.json
{
"key1": "value1",
"key2": 2,
"subsectionKey": {
"suboption1": "subvalue1"
}
}
Now you can use this configuration in your app, in the way like this
public class Program
{
sta...