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.