You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coral's plugin system has three basic requirements that need to be met so that plugin implementations can be loaded and executed successfully:
plugin assemblies must provide only a single class implementing IPlugin
every implementation of IPlugin needs to be a public class ...
... and needs to provide a public, parameter-less constructor
One possible solution to make this possible would be providing a Roslyn analyzer, that prevents compiling code, that doesn't fulfill all of the aforemenioned prerequisites.
The text was updated successfully, but these errors were encountered:
Coral's plugin system has three basic requirements that need to be met so that plugin implementations can be loaded and executed successfully:
One possible solution to make this possible would be providing a Roslyn analyzer, that prevents compiling code, that doesn't fulfill all of the aforemenioned prerequisites.
The text was updated successfully, but these errors were encountered: