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 foo.xml. I know what foo.dll is :-), why does VS2008 add the other three files? What do those three files do? Can I delete them? Do they need to be added in source control?
Visual Studio 2008 - Add Reference
11k views Asked by James Sun AtThere are 5 answers
On
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.
On
VS2008 adds several files to the bin directory [...]Do they need to be added in source control?
Nothing in the bin directory needs to be added to source control. One of the first thing when initially checking in a project is to ignore the bin and obj directories. So yes, you can delete these files, but Visual Studio will recreate them.
On
The refresh file (since no one's hit on that yet!) describes where the DLL came from. This is for auto-refresh references; whenever you do a full build, VS will look in that path and copy that version of the DLL.
Why is this a good thing (sometimes)? Let's say you're in a team environment. Someone checks in code for foo.dll, and your build system builds a new DLL, outputting it in a file share on a server. Your refresh file points to that server copy of the DLL. Next time you build, VS will auto-magically grab the latest and greatest copy of that DLL.
Source Control:
Ben Straub said in a comment to this post: The
.dll.refreshfiles should be added to the source control if required, while the.xml,.pdband of course the.dllfiles should not be added.John Rudy explained when to add the
.refreshfile:.xml like David Mohundro said:
.pdb like David Mohundro said:
.refresh from a blog post about .refresh files: