Is there anyway to combine all resources into a single exe file such as app.config and associated DLL's?
Some applications seem to do this such as eMule.
I don't want my app.config sitting there waiting to be edited.
Thanks
|
|
Is there anyway to combine all resources into a single exe file such as app.config and associated DLL's? Some applications seem to do this such as eMule. I don't want my app.config sitting there waiting to be edited. Thanks
|
|||
|
|
|
|
Certainly, in the There should be an option there for |
||
|
|
|
|
You can of course embed resources. Go to the application properties and select the "Resources" tab. All resources added in their will be in the main binary. Why not have app.config sitting there waiting to be edited? Many professional software packages have configuration and ini files freely there to be edited. |
||
|
|
|
|
Dude, That's why it's a config file! It's supposed to allow you to change the way an app works on-d-fly b! If you are concerned about your settings, which shouldn't be altered, then try another storage, class, database, registry, flatfile etc, or just keep a replica somewhere which can be used to replace the screwed up one. |
||
|
|
|
|
Merging dlls - ILMerge Merging config file is not worth it, since it is supposed to be way to tweak the app behavior without recompiling it. If you do not need that - just hardcode everything (either the code or as EmbeddedResources). If you do still need configurability, you can hide the file into the user profile. See, for example, http://www.codeproject.com/KB/cs/SystemConfiguration.aspx |
||
|
|
|
|
If you don't want settings to be changed move them into the code rather than config. |
||
|
|
|
|
I agree with some of the users. It defeats the purpose of "config", really. Just hard code all the info in a shared class call "settings" and then reference like _serverIP = settings.MailServerIP The only items which should be considered are helperfiles (which relates to something, per say), images, 3rd party dlls (I am not sure of this though)...to name a few. |
||
|
|
|
|
The problem with the .net app.config files is that modifying them can change the way an application works. Embedding resources is not a problem, its that particular file which I'm worried about. |
||
|
|
|
Thinstall looks very interesting. Vorpal, have you encountered any issues when deploying app with 3rd party dlls? Thanks |
||
|
|
|
I have used Thinstall as an application virtualization shrinkwrapper before: https://thinstall.com/help/index.php?_netsupport.htm This does what you want, i.e. bundles all your app's dependencies into one exectuable, including the .configs. You would also do well researching other software shrink-wrap tools. |
|||
|
|