System.Reflection.MetadataLoadContext
7.0.0
See the version list below for details.
dotnet add package System.Reflection.MetadataLoadContext --version 7.0.0
NuGet\Install-Package System.Reflection.MetadataLoadContext -Version 7.0.0
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="7.0.0" />
paket add System.Reflection.MetadataLoadContext --version 7.0.0
#r "nuget: System.Reflection.MetadataLoadContext, 7.0.0"
// Install System.Reflection.MetadataLoadContext as a Cake Addin
#addin nuget:?package=System.Reflection.MetadataLoadContext&version=7.0.0
// Install System.Reflection.MetadataLoadContext as a Cake Tool
#tool nuget:?package=System.Reflection.MetadataLoadContext&version=7.0.0
About
Provides read-only reflection on assemblies in an isolated context with support for assemblies that target different processor architectures and runtimes. Using MetadataLoadContext enables you to inspect assemblies without loading them into the main execution context. Assemblies in MetadataLoadContext are treated only as metadata, that is, you can read information about their members, but cannot execute any code contained in them.
For more information, see the documentation:
- How to: Inspect assembly contents using MetadataLoadContext
- System.Reflection.MetadataLoadContext
- System.Reflection.MetadataAssemblyResolver
Example
The following example shows how to print the list of types defined in an assembly.
using System;
using System.Reflection;
class Program
{
static void Main()
{
string inspectedAssembly = "Example.dll";
var resolver = new PathAssemblyResolver(new string[] {inspectedAssembly, typeof(object).Assembly.Location});
using var mlc = new MetadataLoadContext(resolver, typeof(object).Assembly.GetName().ToString());
// Load assembly into MetadataLoadContext
Assembly assembly = mlc.LoadFromAssemblyPath(inspectedAssembly);
AssemblyName name = assembly.GetName();
// Print types defined in assembly
Console.WriteLine($"{name.Name} has following types: ");
foreach (Type t in assembly.GetTypes())
{
Console.WriteLine(t.FullName);
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- System.Collections.Immutable (>= 7.0.0)
- System.Memory (>= 4.5.5)
- System.Reflection.Metadata (>= 7.0.0)
-
.NETStandard 2.0
- System.Collections.Immutable (>= 7.0.0)
- System.Memory (>= 4.5.5)
- System.Reflection.Metadata (>= 7.0.0)
-
net6.0
- System.Collections.Immutable (>= 7.0.0)
- System.Reflection.Metadata (>= 7.0.0)
-
net7.0
- System.Collections.Immutable (>= 7.0.0)
- System.Reflection.Metadata (>= 7.0.0)
NuGet packages (51)
Showing the top 5 NuGet packages that depend on System.Reflection.MetadataLoadContext:
Package | Downloads |
---|---|
Microsoft.Build
This package contains the Microsoft.Build assembly which is used to create, edit, and evaluate MSBuild projects. |
|
Microsoft.Build.Runtime
This package delivers a complete executable copy of MSBuild. Reference this package only if your application needs to load projects or execute in-process builds without requiring installation of MSBuild. Successfully evaluating projects using this package requires aggregating additional components (like the compilers) into an application directory. |
|
Steeltoe.Common
Steeltoe common library |
|
DotNetCore.Natasha.CSharp.All
发布最新版 Natasha |
|
KY.Generator.Core
Core elements for KY-Generator Download KY.Generator to use this module |
GitHub repositories (23)
Showing the top 5 popular GitHub repositories that depend on System.Reflection.MetadataLoadContext:
Repository | Stars |
---|---|
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
|
|
dotnet/wpf
WPF is a .NET Core UI framework for building Windows desktop applications.
|
|
dotnet/msbuild
The Microsoft Build Engine (MSBuild) is the build platform for .NET and Visual Studio.
|
|
dotnet/samples
Sample code referenced by the .NET documentation
|
|
dotnet/sdk
Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI
|