I'm trying to index the GAC and use the ResolveAssemblyReferences target. However, some assemblies (such as Unity application block) seem to be missing from the GAC and yet VS happily shows them in the Add Reference dialog. My question: how can this be? I always thought that only GAC-registered assemblies appear there. Am I missing something?

link|improve this question

70% accept rate
".NET" tab, I presume – Arnold Zokas Jun 23 '10 at 12:31
Unity what? Unity 3D? – codymanix Jun 23 '10 at 12:32
I'm assuming Unity Application Block (the IoC Container) – ckramer Jun 23 '10 at 12:33
Yep, I'm talking about Unity application block :) – Dmitri Nesteruk Jun 23 '10 at 12:34
feedback

2 Answers

up vote 3 down vote accepted

In addition to the registry setting ckramer mentioned, there is also HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v2.0.50727\AssemblyFoldersEx and HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319\AssemblyFoldersEx.

Tip: if you download the VS 2010 Pro Power Tools extension, the updated "Add Reference" dialog clearly distinguishes between Framework assemblies and Framework Extension assemblies.

link|improve this answer
Thanks, didn't know that! – Dmitri Nesteruk Jun 24 '10 at 7:23
feedback

There is actually a registry setting which allows you to add directories to the list of locations where Visual Studio will search for assemblies to display in the "Add References" dialog.

Here is a quick overview of where it is and how to add your own paths to it.

link|improve this answer
Nope, Unity isn't there. – Dmitri Nesteruk Jun 23 '10 at 13:27
feedback

Your Answer

 
or
required, but never shown

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