Related questions
Read from App.config in a Class Library project
I am developing a simple class library project, which will give me a dll.
I wanted a particular value to be read from a config file. So I have added an App.config file to my project.
<?xml version="1.0" …
Cannot find ConfigurationManager in class library
So, I have a class library that I know will be used by websites and I need to access the config settings. I added a reference to System.Configuration, but I cannot find ConfigurationManager in the class library. A couple …