Microsoft.Extensions.Caching.Abstractions by: Microsoft
  • 10 total downloads
  • Latest version: 10.0.5
Caching abstractions for in-memory cache and distributed cache. Commonly Used Types: Microsoft.Extensions.Caching.Distributed.IDistributedCache Microsoft.Extensions.Caching.Memory.IMemoryCache
Microsoft.Extensions.Caching.Memory by: Microsoft
  • 1 total downloads
  • Latest version: 9.0.14
In-memory cache implementation of Microsoft.Extensions.Caching.Memory.IMemoryCache.
Microsoft.Extensions.Caching.SqlServer by: Microsoft
  • 4 total downloads
  • Latest version: 10.0.5
  • 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/dotnet/tree/a612c2a1056fe3265387ae3ff7c94eba1505caf9
Microsoft.Extensions.Caching.StackExchangeRedis by: Microsoft
  • 10 total downloads
  • Latest version: 10.0.5
  • 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/a612c2a1056fe3265387ae3ff7c94eba1505caf9
Microsoft.Extensions.Compliance.Abstractions by: Microsoft
  • 4 total downloads
  • Latest version: 10.4.0
Abstractions to help ensure compliant data management.
Microsoft.Extensions.Configuration by: Microsoft
  • 10 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider.
Microsoft.Extensions.Configuration.Abstractions by: Microsoft
  • 7 total downloads
  • Latest version: 10.0.5
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
  • 13 total downloads
  • Latest version: 10.0.4
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
  • 3 total downloads
  • Latest version: 10.0.5
Command line configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read configuration parameters from the command line arguments of your application. You can use CommandLineConfigurationExtensions.AddCommandLine extension method on IConfigurationBuilder to add the command line configuration provider to the configuration builder.
Microsoft.Extensions.Configuration.EnvironmentVariables by: Microsoft
  • 5 total downloads
  • Latest version: 10.0.5
Environment variables configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read configuration parameters from environment variables. You can use EnvironmentVariablesExtensions.AddEnvironmentVariables extension method on IConfigurationBuilder to add the environment variables configuration provider to the configuration builder.
Microsoft.Extensions.Configuration.FileExtensions by: Microsoft
  • 10 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
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
  • 9 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
INI configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read configuration parameters from INI files. You can use IniConfigurationExtensions.AddIniFile extension method on IConfigurationBuilder to add INI configuration provider to the configuration builder.
Microsoft.Extensions.Configuration.Json by: Microsoft
  • 10 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
JSON configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read your application's settings from a JSON file. You can use JsonConfigurationExtensions.AddJsonFile extension method on IConfigurationBuilder to add the JSON configuration provider to the configuration builder.
Microsoft.Extensions.Configuration.KeyPerFile by: Microsoft
  • 9 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
  • configuration
Configuration provider that uses files in a directory for Microsoft.Extensions.Configuration. This package was built from the source code at https://github.com/dotnet/dotnet/tree/17d11de66cf75b962995c81dd1235fae9aa5ece0
Microsoft.Extensions.Configuration.UserSecrets by: Microsoft
  • 3 total downloads
  • Latest version: 10.0.5
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.Configuration.Xml by: Microsoft
  • 5 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
XML configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read configuration parameters from XML files. You can use XmlConfigurationExtensions.AddXmlFile extension method on IConfigurationBuilder to add XML configuration provider to the configuration builder.
Microsoft.Extensions.DependencyInjection by: Microsoft
  • 10 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection.
Microsoft.Extensions.DependencyInjection.Abstractions by: Microsoft
  • 12 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
Abstractions for dependency injection. Commonly Used Types: Microsoft.Extensions.DependencyInjection.IServiceCollection
Microsoft.Extensions.DependencyInjection.AutoActivation by: Microsoft
  • 5 total downloads
  • Latest version: 10.4.0
Extensions to auto-activate registered singletons in the dependency injection system.
Microsoft.Extensions.DependencyModel by: Microsoft
  • 8 total downloads
  • Latest version: 11.0.0-preview.2.26159.112
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.