Visual Studio 2008 - Add Reference - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T20:54:18Zhttp://stackoverflow.com/feeds/question/162192http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/162192/visual-studio-2008-add-reference9Visual Studio 2008 - Add ReferenceJames Sun2008-10-02T13:13:33Z2009-07-28T03:01:45Z
<p>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?</p>
http://stackoverflow.com/questions/162192/visual-studio-2008-add-reference/162199#1621993Answer by FlySwat for Visual Studio 2008 - Add ReferenceFlySwat2008-10-02T13:14:52Z2008-10-02T13:14:52Z<p>foo.pdb is the debugger symbols file for foo.dll, you'll want it or you won't be able to set a breakpoint in that code.</p>
http://stackoverflow.com/questions/162192/visual-studio-2008-add-reference/162209#16220911Answer by David Mohundro for Visual Studio 2008 - Add ReferenceDavid Mohundro2008-10-02T13:16:52Z2008-10-02T13:16:52Z<p>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.</p>
<p>I don't know about the refresh file.</p>
http://stackoverflow.com/questions/162192/visual-studio-2008-add-reference/162217#1622172Answer by OregonGhost for Visual Studio 2008 - Add ReferenceOregonGhost2008-10-02T13:18:40Z2008-10-02T13:18:40Z<blockquote>
<p>VS2008 adds several files to the bin directory [...]Do they need to be added in source control?</p>
</blockquote>
<p>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.</p>
http://stackoverflow.com/questions/162192/visual-studio-2008-add-reference/162220#16222011Answer by John Rudy for Visual Studio 2008 - Add ReferenceJohn Rudy2008-10-02T13:20:22Z2008-10-02T13:20:22Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/162192/visual-studio-2008-add-reference/162223#16222311Answer by xsl for Visual Studio 2008 - Add Referencexsl2008-10-02T13:21:04Z2008-10-02T18:42:10Z<p><strong>Source Control:</strong></p>
<p>Ben Straub said in a comment to this post: The <code>.dll.refresh</code> files should be added to the source control if required, while the <code>.xml</code>, <code>.pdb</code> and of course the <code>.dll</code> files should not be added.</p>
<p>John Rudy explained when to add the <code>.refresh</code> file:</p>
<blockquote>
<p>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.</p>
</blockquote>
<p><strong>.xml</strong> like David Mohundro said:</p>
<blockquote>
<p>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.</p>
</blockquote>
<p><strong>.pdb</strong> like David Mohundro said:</p>
<blockquote>
<p>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.</p>
</blockquote>
<p><strong>.refresh</strong> <a href="http://sanjaysainitech.blogspot.com/2007/11/what-are-dllrefresh-extension-files.html" rel="nofollow">from a blog post about .refresh files:</a></p>
<blockquote>
<p>It tells VS where to look for updated
versions of the dll with the same base
name. They're text files, you can open
them and see the path it's using.</p>
<p>Their purpose is to prevent you from
having to copy new versions yourself.
In VS2003, the project file would
contain the source location of the
reference, but since VS2005 doesn't
use project files for ASP.NET
projects, this is the replacement for
that particular functionality.</p>
</blockquote>