Top "App-config" questions

.NET application configuration files contain settings specific to an application.

How may I store a file path in my program's app.config file?

I have written a C# program for saving and reading PDF files. The program saves the output files to the …

c# app-config filepath winapp
Why are application settings read-only in app.config?

I have some settings in my app.config which I intend to be 'global' - ie. any user can change …

c# .net app-config
Settings.settings vs. app.config in .NET desktop app

Possible Duplicate: What is the difference between app.config file and XYZ.settings file? I am quite confused by the …

.net app-config settings.settings
Visual Studio: differentiate app.config for debug and release mode

Is there a way to automatically use a separate app.config when building in release mode? In other words, I …

visual-studio app-config production-environment
Escape & in App.config

I have the following piece of config in my App.config file: <add key="ConnectionString" value="INITIAL CATALOG=myDatabase;…

.net app-config
Multiple App.Config Files in .NET Class library project

I am creating one class library project. Now by default I have one App.Config file so that I am …

c# .net visual-studio c#-4.0 app-config
How do I set CultureInfo.CurrentCulture from an App.Config file?

I need to set my application's culture through an App.Config file, so that "pt-BR" is used automatically for parsing …

.net configuration localization app-config globalization
ConfigurationManager not found

I am new to VS 3.5 and I am writing a console app that needs to pull some key values from …

.net app-config configurationmanager
Update app.config system.net setting at runtime

I need to update a setting in the system.net SectionGroup of a .Net exe app.config file at runtime. …

c# .net app-config system.net
Accessing another projects app.config properties?

I have two projects within my solution, for this example I will call them project A and B. Project B …

c# configuration app-config configurationmanager