Hello I am trying to share my defined classes and types across plugin files and seem to be unable to do so. I define the plugin reference like so:
[PluginReference]
Plugin MyReferencedPlugin;In my IDE the intellisense works properly when I start typing `MyReferencedPlugin` I can see the classes I would like to access and use. If I have another class I have defined and do something like:
class MyClass {
private MyReferencedPlugin.MyCustomClass { get; set; }
}When loading the plugin using those classes I get:
`Error while compiling: The type or namespace name `MyReferencedPlugin' could not be found. Are you missing an assembly reference?`
I know how use .Call and use the functions, but what is the best way to share the classes (without pasting them into each file)?