I compiled a simple program (HIR) in Visual Studio 10.0 (C#), and I got the four binaries in a Debug/Release directory.
- HIR.exe
- HIR.pdb
- HIR.vshost.exe
- HIR.vshost.exe.manifest
I guess that HIR.exe is the binary, and HIR.pdb is debugging info. However, what are HIR.vshost.exe and HIR.vshost.exe.mainfest for?
In terms of deployment, do I have to let the users install all the four files?