Tagged Questions

0
votes
1answer
45 views

Error: The name ‘ConfigurationManager’ does not exist in the current context

I have included the following statement in my Visual C# Console Application (Visual Studio 2005 .NET 2.0 Framework) using System.Configuration; and I am using the following stat …
0
votes
2answers
56 views

Can not get a reference to ConfigurationManager

I simply can not get Visual Studio 2005 to find the System.Configuration.ConfigurationManager class. Here is the code: using System.Configuration; ... x = ConfigurationSettings. …
1
vote
2answers
191 views

ConfigurationSettings.AppSettings is empty, throws null exception

I have a class like this: public class RxNormFolderMgr { // properties public string RxNormFolder { get { return ConfigurationSettings.AppSettings["rootFolder"].ToString() …
0
votes
2answers
36 views

How to return a verbatim string from ConfigurationManager.AppSetting[”settingname”].ToString()

I am using the ConfigurationManager.AppSetting["blah"].ToString() method to get the path to the folder that contains the files I'm needing. But I'm throwing an UnsupportedFormatExc …
1
vote
1answer
77 views

Visual Studio: Configuration Manager missing

I'm using Microsoft Visual Studio Team System 2008 Team Suite. The "Configuration Manager" menu item is missing for me. I've assigned a keyboard shortcut to the Configuration Mana …
1
vote
2answers
227 views

How do you instruct NUnit to load an assembly’s dll.config file from a specific directory?

If an assembly contains an app.config file, ConfigurationManager will load it as long as it is in the same directory as the NUnit project that is executing through NUnit-Gui. To i …
1
vote
1answer
37 views

Binding to ConfigurationSection

I just converted all my settings from AppSettings to ConfigurationSections. It definitely cleaned things up, but I'm having difficulties with the preferences window. I want to use …
0
votes
0answers
61 views

In Shared Addin Extensibility how to get Application Configuration File?

In case of VSTO this AppDomain.CurrentDomain.SetupInformation.ConfigurationFile This Returns the Configuration file of the Executing Plugin, while shared add-in Returns False Conf …
3
votes
3answers
231 views

Change in AppSettings needs restart my Application how can I avoid?

I'm using C# .NET 2.0 Windows Application. and I'm using app.config for my Application Settings. but change in AppSettings doesn't reflected runtime, it Needs Application to be r …
0
votes
2answers
357 views

Getting a StringCollection out of AppSettings through the configuration manager

I am accessing my assembly's configuration like this: ExeConfigurationFileMap map = new ExeConfigurationFileMap(); map.ExeConfigFilename = Assembly.GetExecutingAssembly().Location …
3
votes
2answers
455 views

How can I get ConfigurationManager to load application settings from multiple files?

I'm writing applications that interoperate with a third-party application. This application exposes an API to developers via methods in a DLL. Some time ago, the vendor of this a …
3
votes
2answers
332 views

Can someone provide a quick App.config/Web.config tutorial?

I've used these two configuration files many times before, but I've never taken the time to fully understand how they really work. As most people do, I understand the basics in ho …
0
votes
0answers
129 views

Forcing ConfigurationManager to reload all sections

I am writing a configuration system in which the app.config file is dynamically constructed from various config fragments distributed across multiple locations. The system currentl …
0
votes
1answer
882 views

ConfigurationManager.OpenExeConfiguration - loads the wrong file?

I have added multiple app.config (each with a differet name) files to a project, and set them to copy to the output directory on each build. I try and access the contents of each …
4
votes
4answers
573 views

How can I write to my own app.config using a strongly typed object?

The following code has two flaws, I can't figure out if they are bugs or by design. From what I have seen it should be possible to write back to the app.config file using the Confi …

1 2 next
15 30 50 per page