Replies: 1 comment 1 reply
-
Note that ALC has already specially treating the shared framework assemblies (the ones bundled at |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the issue or suggestion
Hi,
Our project want to call API from System.Runtime.Loader.AssemblyLoadContext to skip load assemblies from System.Xxx and Microsoft.Xxx,the effect same as following codes:
var publicTypes = AssemblyLoadContext.Default.Assemblies .Where(t=>!t.FullName.StartsWith("System")||t.FullName.StartsWith("Microsoft")) .SelectMany(x => x.ExportedTypes)
has any advices? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions