Install you DLL assembly by using the ‘gacutil.exe’, before installing the DLL ensure it has a strong name, to assign a strong name refer to the link Assigning a DLL strong name .
-
open the Command prompt, and navigate to the folder of gacutil.
-
To install a DLL assembly
gacutil /I "C:\[PathToBinDirectoryInVSProject]\gac.dll"
- To uninstall
gacutil /U “Name_of_The_DLL”
