vote up 0 vote down star

I want a setup like this:

+- /ApplicationFolder
  -- App.exe
  -- Core.dll
  -- AnotherShared.dll
  +- /PluginsFolder
    -- plugin1.dll
    -- plugin2.dll

But because plugin1.dll references to Core.dll and Shared.dll when I compile the application it drops a copy of "Copy.dll" and "Shared.dll" to plugins folder as well and if I remove them it doesn't work any more.

How can I solve this problem?

flag

2 Answers

vote up 3 vote down check

When you create an AppDomain you can define a path for loading assemblies. Set AppDomainSetup.PrivateBinPath and pass to AppDomain.Create domain.

Using an AppDomain is a good idea for plugins (allows different CAS and unloading).

To avoid VS/msbuild copying referenced assemblies to the output directory, change "Copy Local" to false in the properties of the reference.

link|flag
I'm using MEF, I'll try to figure out how to do this in MEF – dr. evil Apr 30 at 11:16
For MEF the approach will be different. Not used MEF (yet) but I think you will need to create a custom catalogue which loads from a different folder. – Richard Apr 30 at 13:17
vote up 1 vote down

My MEF application is set up so that plugin projects compile to their own folder (as the is the default), then I use a post-build command to copy specific files to the output extensions folder.

The other way is to have the project build directly into the appropriate output folder and, as the other poster said, open the "Properties" panel for each relevant reference in your plugin project and set "Copy Local" to false.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.