Eirik Tsarpalis
Eirik Tsarpalis
Would it be possible to share a minimal reproduction as well a stacktrace of the error you are experiencing? It looks like you are using [Json.NET](https://github.com/JamesNK/Newtonsoft.Json), I would recommend opening...
I've extracted the following minimal reproduction from the code sample: ```C# using System; using System.Collections.Generic; using System.Text.Json; string json = "{ \"dicSettings\": { }}"; //put a break point here and...
Does the source generator produce any warning or error messages when you build? Does it fail to compile in the IDE, the command line, or both? Unfortunately, we would really...
We use an identical custom converter in our codebase, so would definitely like to see it being officially supported :+1: I very much like the choice of `$case` as well.
Hi, I don't have time to review at the moment, will check later. Thanks.
Let me first say that using this library for storing data is not recommended. You can achieve what you need be serializing and deserializing using `obj` as your type parameter,...
I'm pretty swamped with regular work at the moment, I'll take a look at some later point. Sorry!
Given that you're proposing to change the string output as opposed to the binary output, I should say that it doesn't feel as much of a breaking change. I'd merge...
Visual Studio Mac has always had issues with F# projects, I generally use VS Code or Rider in that platform.
Related to #63. It's trivial to provide an `IConfigurationReader` implementation that reads from the environment. The key can be modified using the `CustomAppSettings` attribute.