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" encoding="utf-8" ?> <configuration> <appSettings> <add key="serviceUrl" value="test value" /> </appSettings> </configuration> Above is my App.config file, and now I am trying to read it as following string strVal = System.Configuration.ConfigurationManager.AppSettings["serviceUrl"]; But I am not getting any value in my string variable. I had done this for a web application in a similar way and