Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a C# class library that needs to be able to read settings the web.config or app.config file (depending on whether the DLL is referenced from an ASP.NET web application or a Windows Forms application).

I've found that ConfigurationSettings.AppSettings.Get("MySetting") works, but that code has been marked as deprecated by Microsoft.

I've read that I should be using: ConfigurationManager.AppSettings["MySetting"].
However, the System.Configuration.ConfigurationManager class doesn't seem to be available from a C# Class Library project.

Does anyone know what the best way to do this is?

share|improve this question
1  
Like i read 4 MSDN examples and articles.. And landed up here. Just add a reference.. why can't they just say that. Good question! +1 – ppumkin Sep 14 '12 at 10:18

8 Answers

up vote 90 down vote accepted

You'll need to add a reference to System.Configuration in your references folder. You should definitely be using the ConfigurationManager over the obsolete ConfigurationSettings.

share|improve this answer

Right click on your class Library, and choose the "Add References" option from the Menu; and finally from the .NET tab, select System.Configuration. This would include System.Configuration dll into your project.

share|improve this answer

You must add to the project a reference to the System.Configuration assembly.

share|improve this answer

Im using this and it works well for me

textBox1.Text = ConfigurationManager.AppSettings["Name"];
share|improve this answer
2  
The TS explicitly states, that he uses the same code, but his project fails to compile (due to missing references, as it turned out). -1 for not reading the question. – Isantipov Mar 12 at 17:28

For Sample App.config like below

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="countoffiles" value="7"/>
<add key="logfilelocation"  value="abc.txt"/>
</appSettings>
</configuration>

you read the above using code shown below

string configvalue1 = ConfigurationManager.AppSettings["countoffiles"];
string configvalue2 = ConfigurationManager.AppSettings["logfilelocation"];

Hope this helps!

share|improve this answer

I strongly recommend you to create a Wrapper for this call. Something like a ConfigurationReaderService and use dependency injection to get this class. This way you will be able to isolate this configuration files for test purposes.

So use the ConfigurationManager.AppSettings["something"]; suggested and return this value. You can with this method create some kind of default return if there is no key available in .config file.

share|improve this answer

web.config is used with web applications. web.config will by default have several configurations required for the web application. You can have a web.config for each folder under your web application.

app.config is used for windows applications. When you build the application in vs.net, it will be automatically renamed to .exe.config and this file has to be delivered along with your application.

You can use the same method to call the appsettings values from both config files :

System.Configuration.COnfigurationSettings.AppSettings["Key"]

share|improve this answer

I have been trying to find a fix for this same issue for a couple days now. I was able to resolve this by adding a key within the appsettings tag in the web.config. This should override the .dll when using the helper.

<configuration>
<appSettings>
<add key="loginUrl" value="~/RedirectValue.cshtml" />
<add key="autoFormsAuthentication" value="false"/>
</appSettings>
</configuration>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.