jellyfin/MediaBrowser.Server.Implementations/Reflection/AssemblyInfo.cs

15 lines
357 B
C#
Raw Normal View History

2016-10-26 08:01:42 +02:00
using System;
using System.IO;
using MediaBrowser.Model.Reflection;
namespace MediaBrowser.Server.Implementations.Reflection
{
public class AssemblyInfo : IAssemblyInfo
{
public Stream GetManifestResourceStream(Type type, string resource)
{
return type.Assembly.GetManifestResourceStream(resource);
}
}
}