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

26 lines
601 B
C#
Raw Normal View History

2014-01-18 20:09:36 +01:00
using MediaBrowser.IsoMounter;
using System.Collections.Generic;
2013-09-25 02:54:51 +02: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 20:09:36 +01:00
list.Add(typeof(LinuxIsoManager).Assembly);
2013-09-25 02:54:51 +02:00
return list;
}
}
}