Placing assemble in Add Reference Dialog

  • Thread starter Thread starter David T.
  • Start date Start date
D

David T.

How to make .NET dll appear in the Add Reference dialog. What in general is
the Add Reference dialog for?
 
You have to install your .NET assembly into the GAC(Global Access Cache):

[SystemRoot]\assembly

i.e.
C:\Windows\assembly
 
I think Visual Studio .NET pulls all assemblies in the GAC and display them
in the Add Reference dialog. This dialog is used for referencing an assembly
that you use in your program.
 
Back
Top