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
MilMike
source
to share
3 answers
You have to publish / install your assembly to the Global Assembly Cache. See this link for.
+4
Matthias
source
to share
There is a Global Assembly Cache .
+4
Sjoerd
source
to share
Yes, you can link to the DLL from the installed path.
Otherwise you can use the GAC
0
andy
source
to share