Question

My plugin DLL is really simple but references fifteen or so other DLLs. How do I register this?

Was it helpful?

Solution

Ways I know about are: a) Put the other assemblies in the GAC (I think this is SDK preferred method). Will have to install on each client if needs to be taken online. b) Use ILMerge to merge all of your assemblies into one assembly. You can deploy this to the database and have it used by your offline clients without a seperate install.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top