I use mysql.data in my visual basic 2008 project. When I build my app and look into the RELEASE folder, I need the .exe.config file to run my app orless it would not work. How would I incorporate this into my application so that I don't need it when I debug my app?

Thanks,

Kevin

link|improve this question

61% accept rate
feedback

1 Answer

You just add an app.config (or web.config for web apps) to your project, leave the build action to none, and all the defaults, and it will be copied and renamed to YourApp.exe.config (if it's an exe project) and deployed automatically whenever you build and there's changes, to the Release/Bin folder or whatever the target bin folder is at the time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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