System.Reflection.MetadataLoadContext 7.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
.NET 6.0 .NET Standard 2.0 .NET Framework 4.6.2
There is a newer prerelease version of this package available.
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
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="7.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Reflection.MetadataLoadContext --version 7.0.0
#r "nuget: System.Reflection.MetadataLoadContext, 7.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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:

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
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (46)

Showing the top 5 NuGet packages that depend on System.Reflection.MetadataLoadContext:

Package Downloads
Microsoft.Build The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains the Microsoft.Build assembly which is used to create, edit, and evaluate MSBuild projects.

Steeltoe.Common The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Steeltoe common library

DotNetCore.Natasha.CSharp.All

发布最新版 Natasha

KY.Generator.Core

Core elements for KY-Generator Download KY.Generator to use this module

RProvider

An F# Type Provider providing strongly typed access to the R statistical package. The type provider automatically discovers available R packages and makes them easily accessible from F#, so you can easily call powerful packages and visualization libraries from code running on the .NET platform.

GitHub repositories (21)

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.
Azure/azure-powershell
Microsoft Azure PowerShell
dotnet/samples
Sample code referenced by the .NET documentation
Version Downloads Last updated
8.0.0-preview.2.23128.3 63 3/14/2023
8.0.0-preview.1.23110.8 104 2/21/2023
7.0.0 70,922 11/7/2022
7.0.0-rc.2.22472.3 187 10/11/2022
7.0.0-rc.1.22426.10 247 9/14/2022
7.0.0-preview.7.22375.6 186 8/9/2022
7.0.0-preview.6.22324.4 161 7/12/2022
7.0.0-preview.5.22301.12 148 6/14/2022
7.0.0-preview.4.22229.4 10,742 5/10/2022
7.0.0-preview.3.22175.4 246 4/13/2022
7.0.0-preview.2.22152.2 160 3/14/2022
7.0.0-preview.1.22076.8 222 2/17/2022
6.0.2-mauipre.1.22102.15 102 2/15/2022
6.0.2-mauipre.1.22054.8 164 1/19/2022
6.0.0 3,408,191 11/8/2021
6.0.0-rc.2.21480.5 267 10/12/2021
6.0.0-rc.1.21451.13 268 9/14/2021
6.0.0-preview.7.21377.19 293 8/10/2021
6.0.0-preview.6.21352.12 219 7/14/2021
6.0.0-preview.5.21301.5 319 6/15/2021
6.0.0-preview.4.21253.7 213 5/24/2021
6.0.0-preview.3.21201.4 372 4/8/2021
6.0.0-preview.2.21154.6 306 3/11/2021
6.0.0-preview.1.21102.12 249 2/12/2021
5.0.1 166,969 4/6/2021
5.0.0 1,379,236 11/9/2020
5.0.0-rc.2.20475.5 258 10/13/2020
5.0.0-rc.1.20451.14 695 9/14/2020
5.0.0-preview.8.20407.11 279 8/25/2020
5.0.0-preview.7.20364.11 1,613 7/21/2020
5.0.0-preview.6.20305.6 295 6/25/2020
5.0.0-preview.5.20278.1 261 6/10/2020
5.0.0-preview.4.20251.6 283 5/18/2020
5.0.0-preview.3.20214.6 259 4/23/2020
5.0.0-preview.2.20160.6 12,629 4/2/2020
5.0.0-preview.1.20120.5 281 3/16/2020
4.7.2 910,679 5/12/2020
4.7.1 336,830 2/18/2020
4.7.0 9,268 12/3/2019
4.7.0-preview3.19551.4 991 11/13/2019
4.7.0-preview2.19523.17 275 11/1/2019
4.7.0-preview1.19504.10 328 10/15/2019
4.6.0 3,000,045 9/23/2019
4.6.0-rc1.19456.4 302 9/16/2019
4.6.0-preview9.19421.4 338 9/4/2019
4.6.0-preview9.19416.11 282 9/4/2019
4.6.0-preview8.19405.3 1,247 8/13/2019
4.6.0-preview7.19362.9 301 7/23/2019
4.6.0-preview6.19303.8 936 6/12/2019
4.6.0-preview6.19264.9 280 9/4/2019
4.6.0-preview5.19224.8 308 5/6/2019
4.6.0-preview4.19212.13 379 4/18/2019
4.6.0-preview3.19128.7 352 3/6/2019
4.6.0-preview.19073.11 379 1/29/2019
4.6.0-preview.18571.3 442 12/3/2018