Visual Studio 2008 - Add Reference

后端 未结 5 1896
情深已故
情深已故 2021-02-04 04:49

When adding a DLL as a reference to an ASP.Net project, VS2008 adds several files to the bin directory. If the DLL is called foo.dll, VS2008 adds foo.dll.refresh, foo.pdb and f

5条回答
  •  死守一世寂寞
    2021-02-04 05:36

    The pdb is there for debugging and symbols. If you get an exception thrown from it, you'll be able to get stacktraces, etc. You're in control of choosing whether or not the PDB is built. The xml file is there for XML comments and intellisense. Visual Studio will parse that and display the XML comments that were added when you call methods in those DLLs.

    I don't know about the refresh file.

提交回复
热议问题