Microsoft.Extensions.DependencyModel
9.0.0-preview.6.24327.7
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.DependencyModel --version 9.0.0-preview.6.24327.7
NuGet\Install-Package Microsoft.Extensions.DependencyModel -Version 9.0.0-preview.6.24327.7
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="9.0.0-preview.6.24327.7" />
paket add Microsoft.Extensions.DependencyModel --version 9.0.0-preview.6.24327.7
#r "nuget: Microsoft.Extensions.DependencyModel, 9.0.0-preview.6.24327.7"
// Install Microsoft.Extensions.DependencyModel as a Cake Addin #addin nuget:?package=Microsoft.Extensions.DependencyModel&version=9.0.0-preview.6.24327.7&prerelease // Install Microsoft.Extensions.DependencyModel as a Cake Tool #tool nuget:?package=Microsoft.Extensions.DependencyModel&version=9.0.0-preview.6.24327.7&prerelease
About
Provides abstractions for reading .deps
files. When a .NET application is compiled, the SDK generates a JSON manifest file (<ApplicationName>.deps.json
) that contains information about application dependencies. You can use Microsoft.Extensions.DependencyModel
to read information from this manifest at run time. This is useful when you want to dynamically compile code (for example, using Roslyn Emit API) referencing the same dependencies as your main application.
By default, the dependency manifest contains information about the application's target framework and runtime dependencies. Set the PreserveCompilationContext project property to true
to additionally include information about reference assemblies used during compilation.
How to Use
The following example shows how to display the list of assemblies used when compiling the current application. Include <PreserveCompilationContext>true</PreserveCompilationContext>
in your project file to run this example.
using System;
using Microsoft.Extensions.DependencyModel;
class Program
{
static void Main()
{
Console.WriteLine("Compilation libraries:");
Console.WriteLine();
foreach (CompilationLibrary lib in DependencyContext.Default.CompileLibraries)
{
foreach (string path in lib.ResolveReferencePaths())
{
Console.WriteLine(path);
}
}
}
}
Additional Documentation
- .deps.json file format
- Microsoft.Extensions.DependencyModel namespace
- Microsoft.Extensions.DependencyModel.DependencyContext
Feedback & Contributing
Microsoft.Extensions.DependencyModel is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.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.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.5)
- System.Text.Encodings.Web (>= 9.0.0-preview.6.24327.7)
- System.Text.Json (>= 9.0.0-preview.6.24327.7)
-
.NETStandard 2.0
- System.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.5)
- System.Text.Encodings.Web (>= 9.0.0-preview.6.24327.7)
- System.Text.Json (>= 9.0.0-preview.6.24327.7)
-
net8.0
- System.Text.Encodings.Web (>= 9.0.0-preview.6.24327.7)
- System.Text.Json (>= 9.0.0-preview.6.24327.7)
-
net9.0
- System.Text.Encodings.Web (>= 9.0.0-preview.6.24327.7)
- System.Text.Json (>= 9.0.0-preview.6.24327.7)
NuGet packages (1.1K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.DependencyModel:
Package | Downloads |
---|---|
Microsoft.AspNetCore.Mvc.Core
ASP.NET Core MVC core components. Contains common action result types, attribute routing, application model conventions, API explorer, application parts, filters, formatters, model binding, and more. Commonly used types: Microsoft.AspNetCore.Mvc.AreaAttribute Microsoft.AspNetCore.Mvc.BindAttribute Microsoft.AspNetCore.Mvc.ControllerBase Microsoft.AspNetCore.Mvc.FromBodyAttribute Microsoft.AspNetCore.Mvc.FromFormAttribute Microsoft.AspNetCore.Mvc.RequireHttpsAttribute Microsoft.AspNetCore.Mvc.RouteAttribute This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/33c2d01092d9a1b7a583fe99a50b15686e2b7de9 |
|
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools. |
|
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog. |
|
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views. |
|
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views. |
GitHub repositories (174)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.DependencyModel:
Repository | Stars |
---|---|
dotnet/aspnetcore
ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
|
|
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
|
|
OpenRA/OpenRA
Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X.
|
|
dotnet/efcore
EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
|
|
dotnet/orleans
Cloud Native application framework for .NET
|
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-rc.2.24473.5 | 40,491 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 54,617 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 30,811 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 33,648 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 19,327 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 22,595 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 126,628 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 35,419 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 58,490 | 2/13/2024 | |
8.0.2 | 2,900,407 | 10/8/2024 | |
8.0.1 | 20,579,202 | 7/9/2024 | |
8.0.0 | 80,188,093 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 163,173 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 130,503 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 53,173 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 91,563 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 101,180 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 240,916 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 100,319 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 56,002 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 104,994 | 2/21/2023 | |
7.0.0 | 107,518,535 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 181,295 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 94,464 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 49,096 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 30,518 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 15,811 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 13,717 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 5,795 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 7,903 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 13,186 | 2/17/2022 | |
6.0.1 | 71,676 | 10/8/2024 | |
6.0.0 | 161,177,458 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 232,947 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 205,606 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 32,029 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 14,133 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 17,621 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 14,056 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 27,893 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 16,768 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 11,730 | 2/12/2021 | |
5.0.0 | 68,018,447 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 91,825 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 51,465 | 9/14/2020 | |
5.0.0-preview.3-runtime... | 46,986 | 4/23/2020 | |
5.0.0-preview.2-runtime... | 11,369 | 4/2/2020 | |
5.0.0-preview.8.20407.11 | 32,916 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 14,448 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 5,368 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 1,366 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 6,678 | 5/18/2020 | |
5.0.0-preview.1.20120.5 | 2,642 | 3/16/2020 | |
3.1.25 | 4,792,900 | 5/10/2022 | |
3.1.6 | 97,168,457 | 7/14/2020 | |
3.1.5 | 8,833,678 | 6/9/2020 | |
3.1.4 | 5,578,269 | 5/12/2020 | |
3.1.3 | 16,019,580 | 3/24/2020 | |
3.1.2 | 7,161,930 | 2/18/2020 | |
3.1.1 | 6,622,131 | 1/14/2020 | |
3.1.0 | 12,517,705 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 15,038 | 11/13/2019 | |
3.1.0-preview2.19525.6 | 10,367 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 6,049 | 10/15/2019 | |
3.0.3 | 189,899 | 2/18/2020 | |
3.0.2 | 89,160 | 1/14/2020 | |
3.0.1 | 512,808 | 11/18/2019 | |
3.0.0 | 181,124,515 | 9/23/2019 | |
3.0.0-rc1-19456-20 | 19,411 | 9/16/2019 | |
3.0.0-preview9-19423-09 | 32,729 | 9/4/2019 | |
3.0.0-preview8-28405-07 | 53,045 | 8/13/2019 | |
3.0.0-preview7-27912-14 | 37,639 | 7/23/2019 | |
3.0.0-preview6-27804-01 | 47,080 | 6/12/2019 | |
3.0.0-preview5-27626-15 | 17,140 | 5/6/2019 | |
3.0.0-preview4-27615-11 | 14,118 | 4/18/2019 | |
3.0.0-preview3-27503-5 | 82,601 | 3/6/2019 | |
3.0.0-preview-27324-5 | 33,815 | 1/29/2019 | |
2.1.0 | 418,197,025 | 5/29/2018 | |
2.1.0-rc1 | 153,212 | 5/6/2018 | |
2.1.0-preview2-26406-04 | 345,735 | 4/10/2018 | |
2.1.0-preview1-26216-03 | 172,109 | 2/26/2018 | |
2.0.4 | 205,598,813 | 12/12/2017 | |
2.0.3 | 34,366,559 | 11/14/2017 | |
2.0.0 | 91,508,641 | 8/11/2017 | |
2.0.0-preview2-25407-01 | 133,065 | 6/27/2017 | |
2.0.0-preview1-002111 | 76,970 | 5/9/2017 | |
1.1.9 | 1,598,429 | 7/10/2018 | |
1.1.2 | 37,716,049 | 5/9/2017 | |
1.1.1 | 6,912,294 | 3/6/2017 | |
1.1.0 | 31,029,801 | 11/16/2016 | |
1.1.0-preview1-001100 | 117,466 | 10/24/2016 | |
1.0.500-preview2-1-003177 | 116,520 | 11/16/2016 | |
1.0.3 | 118,433,631 | 3/6/2017 | |
1.0.1-beta-000933 | 93,313 | 1/27/2017 | |
1.0.0 | 73,273,601 | 6/27/2016 | |
1.0.0-rc2-final | 429,015 | 5/16/2016 | |
1.0.0-rc2-002702 | 1,313,519 | 5/16/2016 |