I'm trying to make a Setup Project (Installer) using Visual Studio Community Edition 2015
When I Build my VB.NET (WinForms) project in Release mode, the following files are created:
- MyApp.exe
- MyApp.exe.config
- MyApp.pdb
- MyApp.vshost.exe
- MyApp.vshost.exe.config
- MyApp.vshost.exe.manifest
- MyApp.xml
Which of these files should I add to my Setup Project? All of them? What are the vshost.exe files? I understand the .config file, which is used for saving settings, but what's with the .xml file?
Also, I want my user settings (config file, set to "User Scope") to be unique for each account in Windows. Do I just put the .config file in the Application Data Folder? (I tried that, and it draws a blue line below the .config file name).