Westwind.ApplicationConfiguration
Westwind.ApplicationConfiguration copied to clipboard
Strongly typed, code-first configuration classes for .NET applications
Hello, I am currently interning for a company and I would like to use this library for application configuration. The doc and license links lead to dead pages and your...
Getting 404 on all the documentation pages e.g. https://github.com/RickStrahl/Westwind.ApplicationConfiguration
Using Interface IList in property declaration will force overriding List values in config files. public IList ServerList { get; set; }
Westwind.Utilities.Configuration/Providers/ConfigurationProviderBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Westwind.Utilities.Configuration/Providers/ConfigurationProviderBase.cs b/Westwind.Utilities.Configuration/Providers/ConfigurationProviderBase.cs index 0d036b8..fb0bae7 100644 --- a/Westwind.Utilities.Configuration/Providers/ConfigurationProviderBase.cs +++ b/Westwind.Utilities.Configuration/Providers/ConfigurationProviderBase.cs @@ -275,7 +275,7 @@ namespace Westwind.Utilities.Configuration foreach (string...
It looks like the xml file serializer will crash if a settings class is not public?
I'm using a json file to host some configurations. The solution is working since months ago. Now and sometimes (That's what I hate the most) I get this error initializing...
It seems that `JsonFileConfigurationProvider` returns and empty string when calling `WriteAsString()`. It seems to me that it does not override `WriteAsString()` which results in a call to XML serialization instead...
When working with multiple configuration classes that have different ConfigurationSection names and save to the same JSON file, ConfigurationSection does not work. Instead, only the most recent object Write is...
I've read the previous post about this and I've tried various methods but I keep getting an error. My config class is like this ``` public class ClientConfiguration : Westwind.Utilities.Configuration.AppConfiguration...
I found a bug in the Read method where, if you have a property which is an array and attempt to use reflection to create an instance, you get a...