Plugin can't load "Rhino version not specified"

What method defines the rhino version in a plugin?

image

For a .NET plug-in your assembly should have a set of attributes. As a simple example check the RhinoPbrMaterial plug-in assembly info:

Other than referencing the RhinoCommon.dll and deriving your plug-in class from Rhino.PlugIns.PlugIn (or one of its deriving classes) there is no explicit rhino version being implemented in .NET plug-ins.

1 Like

Thanks Nathan,

Just one stupid question if I may: Why are these put in square brackets?

Those are attributes, in this particular case assembly attributes.

I found this post on attributes in IronPython

1 Like

On to decorations :slight_smile: it’s Christmas again.