From b97f0681a4ebfb79ee0b931602cda645bad2125e Mon Sep 17 00:00:00 2001 From: Steve MacLean Date: Mon, 15 Apr 2019 19:59:36 -0400 Subject: [PATCH] Initialize IsolatedComponentLoadContext.Name (#24001) --- .../Internal/Runtime/InteropServices/IsolatedComponentLoadContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Private.CoreLib/src/Internal/Runtime/InteropServices/IsolatedComponentLoadContext.cs b/src/System.Private.CoreLib/src/Internal/Runtime/InteropServices/IsolatedComponentLoadContext.cs index d78d7dd..e81eacf 100644 --- a/src/System.Private.CoreLib/src/Internal/Runtime/InteropServices/IsolatedComponentLoadContext.cs +++ b/src/System.Private.CoreLib/src/Internal/Runtime/InteropServices/IsolatedComponentLoadContext.cs @@ -17,7 +17,7 @@ namespace Internal.Runtime.InteropServices { private readonly AssemblyDependencyResolver _resolver; - public IsolatedComponentLoadContext(string componentAssemblyPath) + public IsolatedComponentLoadContext(string componentAssemblyPath) : base($"IsolatedComponentLoadContext({componentAssemblyPath})") { _resolver = new AssemblyDependencyResolver(componentAssemblyPath); } -- 2.7.4