When creating an Installer with InstallShield it apparently takes the app.config and generates a file like
MyAppp.exe.config
In my config file I have directory locations and database connections in the file. Is there a way to update that file with InstallShield?
If not I'll update the directory locations with the App. Any suggestion on the database connection?
C#Installation.NET Programming
Last Comment
CipherIS
8/22/2022 - Mon
p_davis
the 'exe.config' is a visual studio construct for naming application configuration files. Installshield does have the ability to modify these xml files. what version of installshield are you using.
CipherIS
ASKER
2015
CipherIS
ASKER
What i'm trying to do is updated the config file with directory locations of where the install is.
The development application has the original directory structure. It needs to change to the location of the install.
there is an xml file changes listing in the installation designer tab. you can change by key/value combos. its not the most user friendly setup but it works.
I've ended up using an xml file. It ended up easier. Also, I had problems writing to an App.Config file that I created which was in a different directory. Using an XML file solved this issue. Thanks for the input.