Using core 3.0 AssemblyLoadContext to Implement Plug-in Hot Loading
Using core 3.0 AssemblyLoadContext to Implement Plug-in Hot Loading
ASP.NET Core doesn't design to support plug-in hot loading. Yes you can use AssemblyLoadContext to load plugins, but you can only register plugins (AddApplicationPart) at the Startup. So in order to load a plugin the website will need to be restarted.
In order to load the plug-in, you need to restart the website. Can you do that without restarting the website?
As I said above, at the moment, there is no way to load a plugin after the website fully started
https://www.cnblogs.com/zkweb/p/11630228.html
It's a console application not ASP.NET Core
Thank you
no restarting the website https://www.cnblogs.com/lwqlun/p/11260750.html https://github.com/lamondlu/Mystique
I've also tested that there's no need to restart
@ghd258 no restarting the website https://www.cnblogs.com/lwqlun/p/11260750.html https://github.com/lamondlu/Mystique
This is a good change, I hope it can be revised.