Update ApplicationHost.cs
This commit is contained in:
parent
abfddba568
commit
d91a4f0c6d
|
@ -819,38 +819,6 @@ namespace Emby.Server.Implementations
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (plugin is IPluginAssembly assemblyPlugin)
|
|
||||||
{
|
|
||||||
var assembly = plugin.GetType().Assembly;
|
|
||||||
var assemblyName = assembly.GetName();
|
|
||||||
var assemblyFilePath = assembly.Location;
|
|
||||||
|
|
||||||
var dataFolderPath = Path.Combine(ApplicationPaths.PluginsPath, Path.GetFileNameWithoutExtension(assemblyFilePath));
|
|
||||||
|
|
||||||
assemblyPlugin.SetAttributes(assemblyFilePath, dataFolderPath, assemblyName.Version);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var idAttributes = assembly.GetCustomAttributes(typeof(GuidAttribute), true);
|
|
||||||
if (idAttributes.Length > 0)
|
|
||||||
{
|
|
||||||
var attribute = (GuidAttribute)idAttributes[0];
|
|
||||||
var assemblyId = new Guid(attribute.Value);
|
|
||||||
|
|
||||||
assemblyPlugin.SetId(assemblyId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Logger.LogError(ex, "Error getting plugin Id from {PluginName}.", plugin.GetType().FullName);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (plugin is IHasPluginConfiguration hasPluginConfiguration)
|
|
||||||
{
|
|
||||||
hasPluginConfiguration.SetStartupInfo(s => Directory.CreateDirectory(s));
|
|
||||||
}
|
|
||||||
|
|
||||||
plugin.RegisterServices(ServiceCollection);
|
plugin.RegisterServices(ServiceCollection);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user