I have a MVC6 web project with the implementation of secret manager (http://docs.asp.net/en/latest/security/app-secrets.html) to store my configuration keys and it works fine.
This solution has a Web API project and some other utility projects also, so I want to implement "secret manager" through a class library project and add the reference of class library project to all other projects of my solution.
But the references of IConfiguration is not resolved in class library project. Please guide