❔ Options Pattern for injecting configuration
I have a class library (Infrastructure) which has code that injects services in the service container. I want to inject configuration from my appsettings.json using the options patterns and the scope of the class representing the config section (JwtTokenOptions) is limited to the class library. How can I do this? This is what I have done after reading from microsoft docs and it doesn't seem to work. Thanks.
https://learn.microsoft.com/en-us/dotnet/core/extensions/options#optionsbuilder-api
https://learn.microsoft.com/en-us/dotnet/core/extensions/options#optionsbuilder-api

Learn how to use the options pattern to represent groups of related settings in .NET apps.
