You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"))
has any advices? Thanks!
The text was updated successfully, but these errors were encountered:
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"))
has any advices? Thanks!
The text was updated successfully, but these errors were encountered: