jellyfin-server/MediaBrowser.Server.Mono/Native/Assemblies.cs

26 lines
601 B
C#
Raw Normal View History

2014-01-18 19:09:36 +00:00
using MediaBrowser.IsoMounter;
using System.Collections.Generic;
2013-09-25 00:54:51 +00:00
using System.Reflection;
namespace MediaBrowser.ServerApplication.Native
{
/// <summary>
/// Class Assemblies
/// </summary>
public static class Assemblies
{
/// <summary>
/// Gets the assemblies with parts.
/// </summary>
/// <returns>List{Assembly}.</returns>
public static List<Assembly> GetAssembliesWithParts()
{
var list = new List<Assembly>();
2014-01-18 19:09:36 +00:00
list.Add(typeof(LinuxIsoManager).Assembly);
2013-09-25 00:54:51 +00:00
return list;
}
}
}