diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-11-19 13:10:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-19 13:10:03 -0500 |
| commit | 2877da48835cf0127bf505ed6121d29309198f31 (patch) | |
| tree | 7d5f4ce7db93a914f2cc8c2247a760a163a1dd20 /Emby.Common.Implementations/Reflection/AssemblyInfo.cs | |
| parent | 3fd52ff735a441a003a25c6f7abef91880d77b2c (diff) | |
| parent | 5209ce9b2f7d2c56bca2c65966a5e2e7cc982133 (diff) | |
Merge pull request #2295 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Common.Implementations/Reflection/AssemblyInfo.cs')
| -rw-r--r-- | Emby.Common.Implementations/Reflection/AssemblyInfo.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Common.Implementations/Reflection/AssemblyInfo.cs b/Emby.Common.Implementations/Reflection/AssemblyInfo.cs index bd2cb7cf0b..7a92f02d6b 100644 --- a/Emby.Common.Implementations/Reflection/AssemblyInfo.cs +++ b/Emby.Common.Implementations/Reflection/AssemblyInfo.cs @@ -22,5 +22,10 @@ namespace Emby.Common.Implementations.Reflection #endif return type.GetTypeInfo().Assembly.GetManifestResourceNames(); } + + public Assembly[] GetCurrentAssemblies() + { + return AppDomain.CurrentDomain.GetAssemblies(); + } } } |
