aboutsummaryrefslogtreecommitdiff
path: root/third-party
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-02-29 21:23:26 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-02-29 21:23:26 -0500
commitb679ddd4e647ac915febd0d5a5e488a1e8e48842 (patch)
treecf414be9a53342e8d59194198cde5bf3c2187fc1 /third-party
parent2b1314c1475e7e1831c691cf349cb89c66fa320c (diff)
Squashed commit of the following:
commit 231e26e5c6731e6e156d7c0591518e84a3b82f5a Author: vnugent <public@vaughnnugent.com> Date: Thu Feb 29 20:59:42 2024 -0500 fix: #5 find and patch Windows compression bug and some deployment commit d0bfe14e0a0e27172b8dd41f468265e651784837 Author: vnugent <public@vaughnnugent.com> Date: Wed Feb 21 21:39:19 2024 -0500 fix: #4 fix readme licensing message for accuracy commit 6f37f152fcd105e40af6689192a36b87eda95f51 Author: vnugent <public@vaughnnugent.com> Date: Wed Feb 21 21:37:55 2024 -0500 fix: jwt hashalg sizing and public api for hashalg sizes
Diffstat (limited to 'third-party')
-rw-r--r--third-party/DotNetCorePlugins/src/Loader/ManagedLoadContext.cs4
1 files changed, 1 insertions, 3 deletions
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());