0
votes
2answers
33 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
80 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
23 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
2answers
163 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
51 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 …
3
votes
3answers
213 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
307 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 …
12
votes
10answers
997 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 …
3
votes
2answers
394 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
281 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 …
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
1answer
734 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 …
-1
votes
1answer
66 views
How to explicitly call the ProtectedConfigurationProvider encrypt/decrypt from the code?
Hello.
I creted a custom provider that inherits from System.Configuration.ProtectedConfigurationProvider implementing its Encrypt/Decrypt methods.
I placed in my app.config the f …
1
vote
1answer
25 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 …
4
votes
4answers
533 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 …
