JsonConfig
JsonConfig copied to clipboard
simple configuration library using JSON and C# 4.0 dynamic feature
Good day, We are busy migrating to .net core and cannot get this library to work. Please can you update nuget with the dll build for .net standard
Hi there, great library. I've run into a number of problems trying to compile the solution and it is largely due to JsonFX. I was able to get it running...
Avoid using Console.Write or Console.WriteLine as it can affect console application output. Use Debug.Write or Debug.WriteLine instead.
Saving change file two times, causes System.IO.IOexception - as file is locked by saving process i guess. Use File.ReadAllLines instead of File.ReadAllText to prevent locking the file during read.
https://github.com/Dynalon/JsonConfig/blob/5127e282a5f982e0d7067cb3e024f9f973c749f4/JsonConfig/ConfigObjects.cs#L32 Would it be possible to access the keys case insensitive, if the initialitazion of the dictionary were like this: ``` internal Dictionary members = new Dictionary (StringComparer.InvariantCultureIgnoreCase); ```
Would it be possible to add support to allow the settings to be loaded from alternative locations?
Currently the library provides read-only access to JSON configuration-files. I would be lucky to see the ability to save single ConfigObjects as JSON-files again to persist configuration changes made by...
Hey everyone, I just ran into the problem, that you cannot merge the default value null with anothe value. They key simply will not show up in the result. Here...
I have a db connection string in my config file: Connection: "localhost\sqlexpress" but when I debug. in code the variable is " localhostsqlexpress" (no "\" ) and if put two...
it would be cool if we can access the formatter and if possible change it. I am looking to support camel casing in the config files, but access these properties...