aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Reflection/AssemblyInfo.cs
blob: ec25e7951e3ec969f47c2f4aee2d998391430f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
        }
    }
}