From b679ddd4e647ac915febd0d5a5e488a1e8e48842 Mon Sep 17 00:00:00 2001 From: vnugent Date: Thu, 29 Feb 2024 21:23:26 -0500 Subject: Squashed commit of the following: commit 231e26e5c6731e6e156d7c0591518e84a3b82f5a Author: vnugent Date: Thu Feb 29 20:59:42 2024 -0500 fix: #5 find and patch Windows compression bug and some deployment commit d0bfe14e0a0e27172b8dd41f468265e651784837 Author: vnugent Date: Wed Feb 21 21:39:19 2024 -0500 fix: #4 fix readme licensing message for accuracy commit 6f37f152fcd105e40af6689192a36b87eda95f51 Author: vnugent Date: Wed Feb 21 21:37:55 2024 -0500 fix: jwt hashalg sizing and public api for hashalg sizes --- third-party/DotNetCorePlugins/src/Loader/ManagedLoadContext.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'third-party') diff --git a/third-party/DotNetCorePlugins/src/Loader/ManagedLoadContext.cs b/third-party/DotNetCorePlugins/src/Loader/ManagedLoadContext.cs index 01b985e..6e4f024 100644 --- a/third-party/DotNetCorePlugins/src/Loader/ManagedLoadContext.cs +++ b/third-party/DotNetCorePlugins/src/Loader/ManagedLoadContext.cs @@ -71,9 +71,7 @@ namespace McMaster.NETCore.Plugins.Loader _preferDefaultLoadContext = preferDefaultLoadContext; _loadInMemory = loadInMemory; - _resourceRoots = new[] { _basePath } - .Concat(resourceProbingPaths) - .ToArray(); + _resourceRoots = [_basePath, .. resourceProbingPaths]; _shadowCopyNativeLibraries = shadowCopyNativeLibraries; _unmanagedDllShadowCopyDirectoryPath = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName()); -- cgit