I use C# and .net core web api. I have following appsettings.json:
How can I read the red part (as is, without parsing - raw text) of this appsettings.json?
I know that I can put this in separate file and then read like this:
var googleServiceAccount = File.ReadAllText("GoogleServiceAccount.json");
But I want to put them in appsettings.json. Any ideas?