I've create a Project, which contains two folders. The "src" folder contains coreelements, the "plugin" folder contains different plugins (each plugin = one file).
Here an example:
MyProject
|_src
|_attributeclass.cs
|_basepluginparent.cs
|_otherneededclass.cs
|_plugins
|_plugin1extendsfrombaseclass.cs
|_plugin2extendsfrombaseclass.cs
|_plugin3extendsfrombaseclass.cs
|_plugin4extendsfrombaseclass.cs
Now I want to start a build, which creates me 5 files : 1 baseplugin.dll ( containing all 3 coreclasses) 4 files called plugin1.dll ... plugin4.dll
so all plugin refer to baseclass, but i also need the baseclass as own library
How can I do this?