c# - What is the equivalent of Assembly.GetEntryAssembly() in .NET Core? -
in .net framework starting assembly using:
assembly.getentryassembly();
but removed .net core. there no appdomain. how can access entry assembly in .net core , windows universal applications?
(i need find of embedded resource keys)
assembly.getentryassembly()
available in .net standard 1.5, not in versions 1.0 through 1.4. if developing .net core , universal windows applications, version 1.5 should sufficient needs.
if remember correctly, appdomain
destined appear in .net standard 2.0. not available now.
Comments
Post a Comment