vote up 2 vote down star
1

I created a homemade assembly and I think I installed it correctly in the GAC using the .Net 2.0 configuration tool (mscorcfg.msu) However, when I want to reference it in visual studio, where do I find it?

( I know, I should not use the GAC anyway, but indulge me ;-))

EDIT: I did not ask the question clear enough: After installing the assembly to the GAC, it does not show up on the .NET tab of the Project-Add Reference menu.

flag

2 Answers

vote up 3 vote down check

The add reference dialog actually looks at the registry, in particular:

  • [HKEY_LOCAL_MACHINE]\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders
  • [HKEY_CURRENT_USER]\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders

To add your assembly, you must edit these registry keys. Or simply using the "Browse..." button (instead) may be more tempting.

link|flag
Reading your answer reminded me of this very step I had to complete when I still GAC'd assemblies...I went ahead and deleted my answer. – sixlettervariables Jun 21 at 21:18
2  
... or the version-specific registry keys e.g. SOFTWARE\Microsoft\.NETFramework\v2.0.50727\AssemblyFoldersEx – Joe Jun 22 at 4:59
I found this: -The HKLM key pointed in my case to C:\program files\reference assemblies\microsoft\framework\v3.5 -I copied the .dll to that folder and it now showed up on the .Net tab of the Project-Add Reference menuin visual studio -However, I was still greeted wit an assembly not found error while building my main application. -This was solved by installing the .dll to the gac, pointing the installation utility to the location on the C:\ drive specified by the register value. Thanks! – Dabblernl Jun 22 at 5:10
vote up 1 vote down

When you need to reference an assembly that has been deployed to the GAC, you will need to browse to the \bin\Debug directory of the original project via the Browse tab of the Add Reference dialog in Visual Studio.

The reason this works is that since you've installed the assembly into the GAC, it will have a strong name and therefore a .publickey value in the manifest.

When you reference an assembly whose manifest contains a .publickey value, Visual Studio assumes the strongly named assembly will most likely be deployed to the GAC, and therefore does not bother to copy the binary to your application folder.

Instead, it will use the version in the GAC.

link|flag
thanks, a useful extra comment.Actually a thing to be avoided when you deploy your application. – Dabblernl Jun 22 at 5:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.