What is the equivalent of Assembly.GetEntryAssembly() in .NET Core?
问题 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