How do I create my own .NET dll global?

I created a .net dll (Class Library) that works alongside my EXE if it's in the same folder. But is there a way to make the DLL "global" so it is installed somewhere on the system and I can still use it with my exe?

In the VB6 and activex era, I used regsvr32. Is there something similar to regsvr32 but .net dll?

+3


source to share


3 answers


You have to publish / install your assembly to the Global Assembly Cache. See this link for.



+4


source


There is a Global Assembly Cache .



+4


source


Yes, you can link to the DLL from the installed path.

Otherwise you can use the GAC

0


source







All Articles