Closed
Description
Are there any plans to include the following classes and methods in near future? I am porting my framework (http://github.com/riganti/redwood) to .NET Core and I miss these methods.
- Assembly.GetReferencedAssemblies
- Assembly.GetExecutingAssembly
- Assembly.GetEntryAssembly
- Assembly.GetCallingAssembly
- Assembly.CreateInstance
- Assembly.Load which takes byte array or a stream
- AppDomain.CurrentDomain.GetAssemblies
- AppDomain.CurrentDomain.AssemblyResolve
Or is there another way in the new .NET Core how to list all loaded assemblies, get the assembly of method that is being executed or a calling method etc.?