What is the equivalent of Assembly.GetEntryAssembly() in .NET Core?

旧巷老猫 提交于 2019-12-01 16:58:13

问题


In .net framework we could get the starting assembly using:

Assembly.GetEntryAssembly();

But that is removed from .NET Core. Also there is no AppDomain. How can I get access to the entry assembly in .NET Core and Windows Universal applications?

(I need to find all of its embedded resource keys)


回答1:


Assembly.GetEntryAssembly() is available in .NET Standard 1.5, but not in versions 1.0 through 1.4. If you are only developing .NET Core and Universal Windows applications, version 1.5 should be sufficient for your needs.

If I remember correctly, AppDomain is destined to appear in .NET Standard 2.0. It is not available now.




回答2:


I ended up injecting the entry assembly into the library.

In the library:

class AssemblyHelper 
{
     // This can be called instead of Assembly.GetEntryAssembly()
     public static Func<Assembly> GetEntryAssembly;
}

In the start-up application (which uses the library):

class Program
{
    public static void Main()
    {
        AssemblyHelper.GetEntryAssembly = () => typeof(Program).GetAssembly();

        ....
    }
}


来源:https://stackoverflow.com/questions/40483189/what-is-the-equivalent-of-assembly-getentryassembly-in-net-core

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!