vote up 0 vote down star

I have an App.config file in my project that gets copied to NameOfExe.exe.config at build time. The users of my software will need to edit this file at times, but they may not be familiar with how .NET does things (or how computers do things in general). I think using a file name like that might confuse them, with the .exe.config extension and such.

How can I specify a new name for this copied file (remove the .exe bit)? Should I use a custom build command? Also, will .NET pick up on the config file, or does it require that naming scheme?

EDIT: In response to suggestions to reconsider... the application acts as either a service or a console app, so there's no GUI to edit settings. The configuration file contains settings used to connect to a database and an API service. These values should not need to be changed after the initial setup for each customer (which is done by me). In the unlikely event that the values do need to be changed, the customer will need to call me to get the new connection details anyway, so I can walk them through what to edit and how. I would simply like to avoid any confusion when I tell a customer that they need to open a file called ".exe.config", at which point they launch the ".exe" file by mistake. Also, if they need to launch the .exe file and have "Hide extensions of known file types" enabled, some may try to open the config file and then call me wanting to know why they instead get a Notepad window full of strange text.

Sure, it's not required, but I like to plan ahead.

flag

Yeah consider a basic text file you load instead at the very least. – Graphain Sep 30 at 19:38
If the functionality is already included in the .NET Framework, why should I reinvent the wheel? – David Brown Sep 30 at 19:41
Because the functionality "let novice users configure my .NET app" isn't build into the framework. Do you really want someone who will be confused with a file extension having the potential to screw up database connection strings, assembly references, smtp settings etc. ? – Graphain Sep 30 at 22:25
Right, I see your edit. Pierre-Alain's answer is perfect then. – Graphain Sep 30 at 22:27

3 Answers

vote up 4 vote down check

I agree with psychotik that you should reconsider the concept of making your users mess with the configuration file of the software, but you can use this alternative:

It is possible to reference an external configuration file

<appSettings file="otherlessconfusingname.config" />
link|flag
+1 After David Brown's edit, your answer seems to be the best fit. – Mark Seemann Sep 30 at 19:44
This would work, yes. However, the original problem would still exist (possible confusion with the file name) with the added fact that there are now two different configuration files. – David Brown Sep 30 at 19:47
Not if you just rely on otherlessconfusingname.config for the user config stuff? You can put whatever you like there to make it less confusing. This is exactly the answer you asked for. The only alternative from here is to do a settings load within your app of someotherfile.whatever but how is that different from this method? – Graphain Sep 30 at 22:27
My point is, there would still be a .exe.config file, which as I said, may cause confusion. All this does is keep the original config file, complete with the issues I outlined above, and add a second one. I've worked with these customers for a while, so I have a pretty good idea of what might go wrong based on past support calls. I'm just trying to cover all the bases. – David Brown Sep 30 at 22:59
vote up 2 vote down

If your users have problems with the name or the extension of the file, how would they ever deal with the XML inside it?

Instead of wasting your energy figuring out whether you can rename the file, give your users a nice GUI they can use to change the relevant configuration.

link|flag
I edited my question to explain further. – David Brown Sep 30 at 19:38
Thanks for the detailed explanation. You could develop another app for editing the relevant configuration values, but from your scenario description, that sounds like extremely poor return of investment. I voted up one of the other answers that seem to better capture what you asked for. – Mark Seemann Sep 30 at 19:44
vote up 2 vote down

Before someone tell you how to change it (it's possible and pretty simple) I urge you to reconsider.

If your users are other developer type people, using .exe.config is perfectly fine. If they're consumers, they shouldn't mess with the .exe.config or other xml-like files. You should provide another means for them to configure the app (settings).

link|flag

Your Answer

Get an OpenID
or

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