FsConfig icon indicating copy to clipboard operation
FsConfig copied to clipboard

FsConfig is a F# library for reading configuration data from environment variables and AppSettings with type safety.

Results 5 FsConfig issues
Sort by recently updated
recently updated
newest added

Optional subsections does not work for .json files ```fsharp type SubSection = { valueA : string } type Settings = { subSection : SubSection option } ``` Reading a json...

### Description Just curious if there's any way to supply dynamic keys, like a `Map`? eg. if I had a top-level `Connections` key, I could add in an entry for...

### Description FsConfig depends on `Microsoft.Extensions.Configuration` but this dependency is only needed when using `IConfigurationRoot`. Wouldn't it make sense to split the package in two so the users not using...

**Describe the bug** At the moment docs generation is broken. **To Reproduce** 1. Run `./build.sh ReleaseDocs` **Error:** ```sh Fatal error: System.Exception: error while formatting file /home/queil/gh/FsConfig/docsSrc/content/index.fsx. Errors are: seq [SourceError...

When working with configurations, sometimes they get overwritten depending on the origin. The order of the defaulting is discussable, but I think it is - read environment vars - read...