FxCop and GAC Madness - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:30:15Zhttp://stackoverflow.com/feeds/question/848617http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/848617/fxcop-and-gac-madness4FxCop and GAC MadnessMark Levison2009-05-11T15:22:45Z2009-05-12T03:22:51Z
<p>Using FxCop when I try to analyze projects that rely on Patterns and Practices, Enterprise Library Data (among others) 2.0.0.0 - FxCop complains that it can’t: “Locate Assembly Reference” - even though the application dll being analyzed was complied against this version and its in the GAC. If I browse to the GAC try to select the same assembly (I've checked version and public key token) FxCop won't allow me "open" it. The application succeeds in running and definitely makes use of the problem dll.</p>
<p>OS: Seen on both Vista and Windows XP.
Versions: Visual Studio 2005 and 2008. FxCop 1.36
Application is complied with VS2005 for .NET 2.0.</p>
<p>I have the same problem if I try to browse the application dll with Reflector.</p>
<p>Clearly it doesn't think this is the same version of the assembly its compiled against. Does anyone know why? Any suggestions for a solution? What am I missing?</p>
http://stackoverflow.com/questions/848617/fxcop-and-gac-madness/848762#8487620Answer by Aaron Daniels for FxCop and GAC MadnessAaron Daniels2009-05-11T15:54:16Z2009-05-11T15:54:16Z<p>I've always browsed to the local dll's to resolve this issue. I didn't think FxCop and Reflector can actually pull these out of the GAC, although I'm not 100% if this is actually impossible.</p>
<p>Mine are located at:</p>
<p>C:\Program Files\Microsoft Enterprise Library 3.1 - May 2007\Bin</p>
http://stackoverflow.com/questions/848617/fxcop-and-gac-madness/851017#8510173Answer by Aaron Daniels for FxCop and GAC MadnessAaron Daniels2009-05-12T03:22:51Z2009-05-12T03:22:51Z<p>Check <a href="http://social.msdn.microsoft.com/Forums/en-US/vstscode/thread/7cd4e400-933b-499f-b96e-60cd33315d1c" rel="nofollow">this</a> (FxCop) and <a href="http://jayflowers.com/WordPress/?p=136" rel="nofollow">this</a> (Reflector) out.</p>
<p><hr /></p>
<p>In FxCop, you can select <strong>Project - Options... - Spelling & Analysis</strong> - (check) <strong>Search Global Assembly Cache for missing references</strong></p>
<p><hr /></p>
<p>In Reflector, you can select
<strong>View - Options... - Browser -</strong> (check) <strong>Automatically resolve references</strong></p>
<p><hr /></p>
<p>I find it kind of weird that these options are not enabled by default.</p>