Dynamic plugin - multiple nodes from one csproj

In the same way that a (non dynamic) pre compiled plugin can have multiple nodes associated with it, can a dynamic plugin be the same?

I have a few dynamic plugins that are designed to work together, and share the same dependencies. I’d like them to all exist in one place and only have to drag one csproj file into vvvv to access them all

possible?

easy with 2 options:

  • in one .cs file just put any number of classes that are marked with a PluginInfo attribute (see template)
  • add another .cs file to your project using ProjectExplorer (CTRL+J) that has a class marked with the PluginInfo attribute

hope that is clear. let me know if you need more info.

Yay!

thanks Joreg