Tagged Questions

0
votes
1answer
32 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 …
1
vote
4answers
5k views

C# ConfigurationManager.GetSection could not load file or assembly

Hi all, I am stuck! this seems really daft but I can not see where I am going wrong. I am creating a 2.0 C# ASP.NET website. I am trying to use a custom section in the web.conf …
0
votes
2answers
53 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. …
12
votes
10answers
1k views

Java configuration framework

I'm in the process of weeding out all hardcoded values in a java library and was wondering what framework would be the best (in terms of zero- or close-to-zero configuration) to ha …
1
vote
2answers
164 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
32 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
73 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
213 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
32 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
58 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
351 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
435 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
320 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 …
4
votes
4answers
558 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