Resource files are compiled binaries (technically they are assemblies, but they do not contain executable code), and the ResourceManager that works with these resource files is thus read-only.
What you can do is define a separate configuration file referenced by the app.config file containing the installation-related data as a custom ConfigurationSection or simply as AppSettings. You can then use the ConfigurationManager to load, read, and write these lines.
Keiths
source share