aloneguid / config

⚙ Config.Net - the easiest configuration framework for .NET developers. No BS.
MIT License
656 stars 86 forks source link

Order of stores is not honoured! #28

Closed jsobell closed 7 years ago

jsobell commented 7 years ago

The order of items added using AddStore is not honoured because the underlying container is a ConcurrentBag, which is unordered, so the enumerator does not return the values in the order they were added, and store priorities are ignored. This is a major issue if you're using more than one store!

aloneguid commented 7 years ago

Hi @jsobell thanks for reporting this. Would you like to make changes and raise a PR?