aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/Reflection/AssemblyInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-19 11:51:49 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-19 11:51:49 -0500
commitbdab0a1588fa4347d168c69f803a13cf607b4166 (patch)
tree336b42433978a473f0a082c0dbf42c5996ded00e /Emby.Common.Implementations/Reflection/AssemblyInfo.cs
parent52227ce00d9602e4356c0b1f91a42ab8c61b19a6 (diff)
move TypeMapper to portable project
Diffstat (limited to 'Emby.Common.Implementations/Reflection/AssemblyInfo.cs')
-rw-r--r--Emby.Common.Implementations/Reflection/AssemblyInfo.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Common.Implementations/Reflection/AssemblyInfo.cs b/Emby.Common.Implementations/Reflection/AssemblyInfo.cs
index bd2cb7cf0..7a92f02d6 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();
+ }
}
}