vote up 0 vote down star

I've got many assemblies/projects in the same c#/.net solution. A setting needs to be saved by people using the web application gui, and then a console app and some test projects need to access the same file. Where should I put the file and how to access it?

I've tried using "AppDomain.CurrentDomain.BaseDirectory" but that ends up being different for my assemblies. Also the "System.Reflection.Assembly.Get*Assembly.Location" fail to give me what I need.

Maybe this isn't something I should but in a file, but rather the database? But it feels so complicated doing that for a few lines of configuration.

flag

75% accept rate
Are the assemblies all in the same directory? If not, nothing short of having a config file for each assembly pointing to the main config file is going to be useful – Brad Bruce Sep 19 '08 at 11:44
I am wondering if you are going to experience locking problems... with multiple applications trying to write the same file. – Vaibhav Sep 19 '08 at 11:45
Vaibhav: Only one of the assemblies will ever write to the file. – Microserf Sep 19 '08 at 12:13

5 Answers

vote up 1 vote down check

Personally, I would be leveraging the database because the alternative is either a configuration headache or is more trouble than it's worth.

You could configure each application to point to the same file, but that becomes problematic if you want to move the file. Or you could write a service to manage the file and expose that to clients, but at this point you may as well just use the DB.

HTH, Kent

link|flag
vote up 3 vote down

Put the file in

    Path.Combine(
        Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData),
        "[Company Name]\[Application Suite]");
link|flag
vote up 0 vote down

Thought about storing it in the registry or in Isolated Storage? Not sure if multiple applications can share Isolated Storage or not, though.

link|flag
Not really, they need to be deployed using ClickOnce for that as it seems. – Microserf Sep 19 '08 at 11:43
What about Registry? – Vaibhav Sep 19 '08 at 11:46
I don't know. It feels more logical and safe to put it in a database as compared to the registry. Or? – Microserf Sep 19 '08 at 11:47
Well, I say if you have a database, then yes put them in the database for sure.... – Vaibhav Sep 19 '08 at 11:48
vote up 0 vote down

registry or database also avoids any file-locking problems

link|flag
vote up 0 vote down

projects can have build events -- why not add a post-build event to copy the file to all required locations?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.