0
votes
3answers
59 views
Migrating a WinForms (C#) APP settings to a .config file.
Hi Guys,
I want to migrate the settings file I am currently using to appconfig file.
At the moment I am trying to make a copy of it but so far I cannot even get it to write to the file using the …
0
votes
0answers
38 views
WCF Configuration puzzle
The following code works if embedded in a console application whether or not path points to some config file on my local hard drive or a network location:
public object GetInstance(InstanceContext …
0
votes
1answer
75 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 statement in my …
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.config file with:
…
0
votes
2answers
64 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 = …
13
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 handle run-time …
1
vote
2answers
245 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(); } }
}
When I try …
0
votes
2answers
40 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 UnsupportedFormatException on the path …
2
votes
1answer
95 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 Manager, but it doesn't …
1
vote
2answers
263 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 illustrate consider …
1
vote
1answer
38 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 bindings in my WPF …
0
votes
0answers
63 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 Configuration File as …
2
votes
3answers
248 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 restarted.
How can I …
0
votes
2answers
395 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 + ".config";
…
3
votes
2answers
479 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 app started …
