You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In addition to natively taking in and parsing a YAML file, with .NET Core promoting use of files such as appsettings.json, it would be incredibly useful for this library to support JSON out of the box. This could be done via StreamReader, but having support like with YAML would follow the paradigm Microsoft has set.
The text was updated successfully, but these errors were encountered:
I would also like to see an overload where I can pass in my keys to the Load method. I prefer to keep these types of settings encrypted so that when they are committed to source control they are not in plain text (.NET Framework supports this via web.config encryption key containers). Having the YAML file requires that my credentials be stored and committed via plain text :(
In addition to natively taking in and parsing a YAML file, with .NET Core promoting use of files such as
appsettings.json
, it would be incredibly useful for this library to support JSON out of the box. This could be done via StreamReader, but having support like with YAML would follow the paradigm Microsoft has set.The text was updated successfully, but these errors were encountered: