I am working with a C#.net 2008 desktop application. I am wondering if you can tell me the following:
1. How are the configuration manager (app.con.fig), "App1.exe.config", and "App1.vshost.exe.config" affect each other?
2. If I make a change in one of these files, how do I keep the change from occuring in the other file?
Loading
Amit ChoudharyPosted Aug 8, 2011, 2:06 AM
The App1.exe.config file have configuration settings for you exe to run and provide some config information to launch the exe successfully. where the App1.vshost.exe.config is the file that have setting for the HOST i.e. in this case it would be your IDE under which the .exe is running.
for more details about these visit this link here.
Hope this helped you .