Reputation: 51
I'm trying to figure out what files are needed when I distribute an application that I have written. In the release folder after I have built the application I have the following:
app.exe (obviously needed)
app.exe.config (obviously needed for my config settings)
app.pdb
app.vshost.exe
app.vshost.exe.config
app.vshost.exe.manifest
Upvotes: 5
Views: 1634
Reputation: 50215
Both ClickOnce and Deployment projects tend to take care of including everything necessary. These also take care of installing the appropriate version of the framework.
Upvotes: 0
Reputation: 69250
The others are not needed:
Upvotes: 4