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)