Trouble adding an assembly reference to a project. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:32:02Z http://stackoverflow.com/feeds/question/275148 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/275148/trouble-adding-an-assembly-reference-to-a-project 0 Trouble adding an assembly reference to a project. Ferruccio 2008-11-08T20:26:30Z 2009-04-25T11:37:06Z <p>I'm having a problem adding a reference to a .NET assembly I built. Here's what I did.</p> <ol> <li>I created a .NET assembly (testlib.dll).</li> <li>I made sure it had a strong name (added a keyfile).</li> <li>I creates a WiX installation project for that assembly.</li> <li>I added Assembly='.net' and KeyPath='yes' to the File property for the assembly.</li> </ol> <p>The installation works fine. I can see testlib in the GAC (C:\Windows\assembly).</p> <p>I create a new .NET project and try to add a reference to testlib, but I don't see it in the .NET tab of the Add Reference dialog. How do I get it to show up there?</p> http://stackoverflow.com/questions/275148/trouble-adding-an-assembly-reference-to-a-project/275284#275284 1 Answer by Ohad Horesh for Trouble adding an assembly reference to a project. Ohad Horesh 2008-11-08T22:11:30Z 2008-11-08T22:11:30Z <p>The assemblies that are in the .NET tab have no connection to the GAC. In order to see the assemblies in the .NET tab your installer will have to write to the following registry path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft.NETFramework\AssemblyFolders The entry should create a new key usually the application name and than set the default value to the path that the assemblies are installed.</p> <p>For example assuming the application name is MyApp and it is installed to: C:\Program Files\MyApp The registry full path will be HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft.NETFramework\AssemblyFolders\MyApp And the default value will be: C:\Program Files\MyApp </p>