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
This then seems to render the loaded plugins fine, until I try to inject plugin services - I can inject things I declare directly in the host (such as config services, etc), but I cannot inject services I've created and set up in the plugin (using bootstrapper and PluginService, etc), it seems to tie the assembly to the host IServiceProvider.
Additionally, I noticed the MvcPluginLoader does not fire the activated method, so i did this manually using IPluginActivator.
The text was updated successfully, but these errors were encountered:
To get routing to work with blazor server side - I have to add the loaded plugin assemblies to the router
<Router AppAssembly="@typeof(App).Assembly" AdditionalAssemblies="@_pluginAssemblies">
This then seems to render the loaded plugins fine, until I try to inject plugin services - I can inject things I declare directly in the host (such as config services, etc), but I cannot inject services I've created and set up in the plugin (using bootstrapper and PluginService, etc), it seems to tie the assembly to the host IServiceProvider.
Additionally, I noticed the MvcPluginLoader does not fire the activated method, so i did this manually using IPluginActivator.
The text was updated successfully, but these errors were encountered: