I has enable PlugInSources:
return services.AddAbp<AdminWebMvcModule>(options =>
{
var plusPath = Path.Combine(_hostingEnvironment.WebRootPath, "PlugIns");
if (!Directory.Exists(plusPath))
Directory.CreateDirectory(plusPath);
options.PlugInSources.AddFolder(plusPath);
});
But in plus assembly when I reference a third party assembly,It's not work,and throw NotFound,Only if I move it to site bin folder. And in plus assembly,when I reference orther plus assembly where in PlugIns folder ,it also throw NotFound. Is there any way to solve it?
<cite>ismcagdas: </cite> Hi,
In ASP.NET Core version, currently it is not possible by default. Please check this issue comment to implement it <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/387#issuecomment-271833997">https://github.com/aspnetzero/aspnet-ze ... -271833997</a>.
Let us know if you have any problems.
Thanks.
In ASP.NET Core version,currently it can't set default language by code?
<cite>ismcagdas: </cite> Hi,
Are you using ASP.NET MVC 5.x or ASP.NET Core version ?
ASP.NET Core
ASP.NET Core version
How to set up global default language?Such as Chinese.
I have read PlugInDemo,but it's not mvc plug demo. I want achieve mvc plug-in mode base on abp asp.net core,Can you provide guidance?