We built a framework library for logging, caching, emails, messages, images which uses Entity Framework 6.0. This library is used in multiple applications in our organization.
Whenever an app uses this library, has to follow certain guidelines to implement. The source app has to create <appsetting> values with same name which will used by dll. Dll reads the connection string based on the source web.config name (this connection string name is fixed).
In our new app, we are using .NET Core; but as our Framework library reads values from web.config file and .NET Core doesn't have one, how to use this from an .NET Core application?