Microsoft.Extensions.Caching.SqlServer by: Microsoft
  • 15 total downloads
  • Latest version: 8.0.22
  • cache distributedcache sqlserver
Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using Microsoft SQL Server. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ee417479933278bb5aadc5944706a96b5ef74a5d
Microsoft.Extensions.Caching.StackExchangeRedis by: Microsoft
  • 19 total downloads
  • Latest version: 10.0.0
  • cache distributedcache redis
Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using Redis. This package was built from the source code at https://github.com/dotnet/dotnet/tree/b0f34d51fccc69fd334253924abd8d6853fad7aa
Microsoft.Extensions.Configuration.Abstractions by: Microsoft
  • 9 total downloads
  • Latest version: 10.0.0-preview.4.25258.110
Provides abstractions of key-value pair based configuration. Interfaces defined in this package are implemented by classes in Microsoft.Extensions.Configuration and other configuration packages.
Microsoft.Extensions.Configuration.Binder by: Microsoft
  • 15 total downloads
  • Latest version: 9.0.9
Provides the functionality to bind an object to data in configuration providers for Microsoft.Extensions.Configuration. This package enables you to represent the configuration data as strongly-typed classes defined in the application code. To bind a configuration, use the Microsoft.Extensions.Configuration.ConfigurationBinder.Get extension method on the IConfiguration object. To use this package, you also need to install a package for the configuration provider, for example, Microsoft.Extensions.Configuration.Json for the JSON provider.
Microsoft.Extensions.Configuration.CommandLine by: Microsoft
  • 1 total downloads
  • Latest version: 2.1.0-rc1-final
  • configuration commandline
Command line configuration provider implementation for Microsoft.Extensions.Configuration.
Microsoft.Extensions.Configuration.FileExtensions by: Microsoft
  • 32 total downloads
  • Latest version: 9.0.10
Provides a base class for file-based configuration providers used with Microsoft.Extensions.Configuration and extension methods for configuring them.
Microsoft.Extensions.Configuration.Ini by: Microsoft
  • 0 total downloads
  • Latest version: 6.0.0-rc.2.21480.5
INI configuration provider implementation for Microsoft.Extensions.Configuration.
Microsoft.Extensions.Configuration.UserSecrets by: Microsoft
  • 13 total downloads
  • Latest version: 9.0.6
User secrets configuration provider implementation for Microsoft.Extensions.Configuration. User secrets mechanism enables you to override application configuration settings with values stored in the local secrets file. You can use UserSecretsConfigurationExtensions.AddUserSecrets extension method on IConfigurationBuilder to add user secrets provider to the configuration builder.
Microsoft.Extensions.DependencyInjection.Abstractions by: Microsoft
  • 10 total downloads
  • Latest version: 9.0.2
Abstractions for dependency injection. Commonly Used Types: Microsoft.Extensions.DependencyInjection.IServiceCollection
Microsoft.Extensions.DependencyInjection.AutoActivation by: Microsoft
  • 2 total downloads
  • Latest version: 10.0.0
Extensions to auto-activate registered singletons in the dependency injection system.
Microsoft.Extensions.DependencyModel by: Microsoft
  • 8 total downloads
  • Latest version: 10.0.0-rc.2.25502.107
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.
Microsoft.Extensions.Diagnostics.HealthChecks by: Microsoft
  • 19 total downloads
  • Latest version: 9.0.5
  • diagnostics healthchecks
Components for performing health checks in .NET applications Commonly Used Types: Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService Microsoft.Extensions.Diagnostics.HealthChecks.IHealthChecksBuilder This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ed74665e773dd1ebea3289c5662d71c590305932
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions by: Microsoft
  • 13 total downloads
  • Latest version: 9.0.0-preview.5.24306.11
  • diagnostics healthchecks
Abstractions for defining health checks in .NET applications Commonly Used Types Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/8af96e042134fb3b2f21df26dd0f32ea1c00dd37
Microsoft.Extensions.FileProviders.Abstractions by: Microsoft
  • 15 total downloads
  • Latest version: 9.0.9
Abstractions of files and directories. Commonly Used Types: Microsoft.Extensions.FileProviders.IDirectoryContents Microsoft.Extensions.FileProviders.IFileInfo Microsoft.Extensions.FileProviders.IFileProvider
Microsoft.Extensions.FileProviders.Composite by: Microsoft
  • 40 total downloads
  • Latest version: 10.0.0-rc.1.25451.107
Composite file and directory providers for Microsoft.Extensions.FileProviders.
Microsoft.Extensions.FileProviders.Embedded by: Microsoft
  • 41 total downloads
  • Latest version: 10.0.0-preview.6.25358.103
  • files filesystem
File provider for files in embedded resources for Microsoft.Extensions.FileProviders. This package was built from the source code at https://github.com/dotnet/dotnet/tree/75972a5ba730bdaf7cf3a34f528ab0f5c7f05183
Microsoft.Extensions.FileSystemGlobbing by: Microsoft
  • 0 total downloads
  • Latest version: 8.0.0-preview.1.23110.8
File system globbing to find files matching a specified pattern.
Microsoft.Extensions.Hosting.Abstractions by: Microsoft
  • 1 total downloads
  • Latest version: 5.0.0-preview.3.20215.2
  • hosting
.NET Core hosting and startup abstractions for applications.
Microsoft.Extensions.Http by: Microsoft
  • 8 total downloads
  • Latest version: 10.0.0-preview.6.25358.103
The HttpClient factory is a pattern for configuring and retrieving named HttpClients in a composable way. The HttpClient factory provides extensibility to plug in DelegatingHandlers that address cross-cutting concerns such as service location, load balancing, and reliability. The default HttpClient factory provides built-in diagnostics and logging and manages the lifetimes of connections in a performant way. Commonly Used Types: System.Net.Http.IHttpClientFactory
Microsoft.Extensions.Http.Resilience by: Microsoft
  • 1 total downloads
  • Latest version: 8.7.0
Resilience mechanisms for HttpClient.