The appconfig tag has no wiki summary.
2
votes
1answer
86 views
How to read custom config section in app.config in c#
I want to read following custom section from app.config:
<StartupFolders>
<Folders name="a">
<add folderType="Inst" path="c:\foo" />
<add folderType="Prof" ...
1
vote
4answers
52 views
Deploying a .net project to development server
I developed a winforms app locally on my machine. It reads data from a csv file and looks up related information from a database (by executing a stored proc).
I moved that to the development server ...
1
vote
2answers
59 views
How can we write our own configuration in App.config
In one of my c# application, i have to write directories path inside config file as following
Main Folder = Sites
Sub Folders = 400, 500, 600, and so on
For each subfolders = Inst, Prof
Inside Inst ...
1
vote
2answers
167 views
How to override a base class' DB connection string?
I have a base class (written using C#.net) which uses datasets to pull data from DB and the connection string is in App.config file. So after writing the base class it has been compiled into dll.
...
1
vote
1answer
104 views
AppConfig::File retrieving values
I am trying to use AppConfig::File for handling a config file. However, I am always getting an empty value from the object. The following is the code:
my $state = AppConfig::State->new( {
...
0
votes
1answer
36 views
Why can't I use my dll that is referenced config file
I would like to ask this question it is crazy that inside the dll code I can't reference the dll.config file and its only compiled into the exe and copied to any other project to the solution.
...
0
votes
1answer
51 views
Getting access deny error while modifying app.config file in Win7
I am using app.config to store application configuration settings, also I allow user to updated these settings run-time. This is working fine in Win Xp but in Win 7 I am getting access deny error when ...
0
votes
5answers
97 views
Moving connection string from app.config to code in C#
I'm trying to use Entity Framework and it put it's connection string into app.config. I would like to move it to code as it's easier for me at this stage of development.
...
0
votes
0answers
75 views
Managing (add/update) user specific configuration setting in WPF application
I want to manage user specific configuration settings in WPF application configuration file (app.config). While setup (.msi using custom action) I ask user to enter some of the configuration ...
0
votes
2answers
54 views
in Perl, using Appconfig I want to be able to include a cfg file in another config file
I've done a lot of research but no luck...
I want to have a config file with some default or generic values in it. Then have other config files INCLUDE that default config, and overwrite variables if ...
0
votes
2answers
153 views
use ConfigurationManager to store user values in a file that is separate from the app config
Ok, I've just about given up on this.
I would like to be able to record user preferences using a user config file, which would be referenced from the app config file. I am trying to do this with ...
0
votes
2answers
142 views
How to programmatically change an endpoint's identity configuration?
I am trying to create a tool to modify my service's app.config file programmatically. The code is something like this,
string _configurationPath = @"D:\MyService.exe.config";
ExeConfigurationFileMap ...
0
votes
0answers
46 views
Conflict to write trace log in hosted path
I created a custom trace log for day to day bases, but it has some conflicts when writing the trace log in hosted web services path.
My custom trace log has its own folder path and file name. So ...
0
votes
1answer
59 views
Export / print Perl AppConfig values
I'm parsing a single configuration file with both Perl and PHP, and I want to make absolutely sure that they get exactly the same result. Therefore I'd like to either export the parsed configuration ...