In my Startup.cs I have AddJsonOptions with some options and some custom converters. It all works fine if I call API but if Hangfire fires a method that needs to serialize something where I used JsonConverter attribute, it doesn't recognize options I have in the Startup.cs for System.Text.Json.
Is there any way to configure System.Text.Json options so Hangfire recognizes them (mainly custom converters)? It's not an option for me to create JsonSerializerOptions as I'm not doing serialization myself myself.
Thanks