Four binaries from Visual Studio / C # compilation

I put together a simple program (HIR) in Visual Studio 10.0 (C #), and I got four binaries in the Debug / Release directory.

  • Hir.exe
  • Hir.pdb
  • Hir.vshost.exe
  • HIR.vshost.exe.manifest

I assume that HIR.exe is binary, and HIR.pdb is debugging information. However, what is HIR.vshost.exe and HIR.vshost.exe.mainfest?

As for deployment, should I let users install all four files?

+3
source share
1 answer

You do not need to deploy the "vshost" files, this is just to help with debugging in Visual Studio.

Just for confirmation from MSDN

(.vshost.exe) Visual Studio

http://msdn.microsoft.com/en-us/library/ms185331%28v=VS.100%29.aspx

+5

Source: https://habr.com/ru/post/1768416/


All Articles