Getting assemblies to show in the .NET tab of Add Reference - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T03:26:47Z http://stackoverflow.com/feeds/question/495973 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/495973/getting-assemblies-to-show-in-the-net-tab-of-add-reference 2 Getting assemblies to show in the .NET tab of Add Reference Mitchel Sellers 2009-01-30T15:47:44Z 2009-01-30T16:06:54Z <p>When working with Visual Studio and adding a reference to a project you are presented a window with multiple tabs; .NET, Project, Recent, and Browse. What is needed to get an item listed under the .NET listing? </p> <p>We have items in the GAC which we thought would get them listed there, but they are not. We are looking for methods to be able to get more consistent reference paths for assemblies in our applications across a very large development team.</p> http://stackoverflow.com/questions/495973/getting-assemblies-to-show-in-the-net-tab-of-add-reference/496023#496023 6 Answer by Jim Petkus for Getting assemblies to show in the .NET tab of Add Reference Jim Petkus 2009-01-30T16:03:32Z 2009-01-30T16:03:32Z <p>You need to make a registry entry to tell Visual Studio which folders to show assemblies for. This article explains how to do it:</p> <p><a href="http://www.platinumbay.com/blogs/dotneticated/archive/2008/09/02/add-reference-and-the-gac.aspx" rel="nofollow">http://www.platinumbay.com/blogs/dotneticated/archive/2008/09/02/add-reference-and-the-gac.aspx</a></p> <p>We don't use the GAC anymore as it is a cumbersome process that wasn't giving benefit to our team members. We solve the consistent path issues using project references for our own assemblies. Third party assemblies go in a folder within the solution and we reference the assemblies in the projects from there. This way everyone has them in the same path with no worries.</p> http://stackoverflow.com/questions/495973/getting-assemblies-to-show-in-the-net-tab-of-add-reference/496025#496025 4 Answer by Wolfwyrd for Getting assemblies to show in the .NET tab of Add Reference Wolfwyrd 2009-01-30T16:03:58Z 2009-01-30T16:03:58Z <p>You need to add a registry key like: </p> <p>[HKEY_CURRENT_USER\SOFTWARE\Microsoft.NETFramework\AssemblyFolders\MyAssemblies]@="C:\MyAssemblies"</p> <p>You can see more on this at: <a href="http://support.microsoft.com/kb/306149" rel="nofollow">http://support.microsoft.com/kb/306149</a></p> http://stackoverflow.com/questions/495973/getting-assemblies-to-show-in-the-net-tab-of-add-reference/496037#496037 1 Answer by Cerebrus for Getting assemblies to show in the .NET tab of Add Reference Cerebrus 2009-01-30T16:06:54Z 2009-01-30T16:06:54Z <p>This is probably a VFAQ, even though I'm quite new here. The basic concept here is that the list of assemblies is loaded based on a setting in the Registry. </p> <p>All you need to do is to add a registry subkey which points to the location of the assembly under the following key:</p> <pre><code>HKEY_CURRENT_USER\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders\ </code></pre> <p>If MyAssemblyFolder is the name of your folder where your Assembly to be added resides, create a subkey with any name and within it, add a String key with the complete path to your MyAssemblyFolder.</p>