This is a new tab on the plugin maintenance form, and allows you to reference assemblies (dll's) not in the GAC, and not in the Jiwa program files folder. This allows you to embed third party (or your own) assemblies in the plugin, and allows you to use those assemblies in your code.
We store the binary image of the embedded assemblies in the database with the plugin, and write those to the file system on login, and add the reference to the plugin assembly automatically.
We found during development of a plugin which talks to a REST API leveraging Service Stack that we needed to have a few 3rd party assemblies referenced by the plugin. This plugin integrates to a 3PL (third party logistics) and I needed to send orders, receive GRN's, et cetera using the ServiceStack libraries. So, we added the ability to reference those ServiceStack assemblies and do all the deployment so the plugin is able to be exported, imported and run without the need to install a 3rd party component.
So - the end result is our plugin uses 3rd party assemblies, and we don't need to worry about deploying those on the client machine - the plugin framework takes care of all that.
I hope this is of some value to those developing plugins



