Microsoft.Diagnostics.Tracing.TraceEvent
by: Microsoft
- 4 total downloads
- Latest version: 2.0.2
Event Tracing for Windows (ETW) is a powerful logging mechanism built into the Windows OS and is used extensively in Windows.
You can also log ETW events yourself code using the System.Diagnostics.Tracing.EventSource class.
The TraceEvent library conains the classes needed to control ETW providers (including .NET EventSources)
and parse the events they emit.
The library includes
-- TraceEventSession which can enable ETW providers,
-- EtwTraceEventSource which lets you read the stream of ETW events, and
-- TraceLog which is is digested form of ETW events which include decoded stack traces associated with the events.
See https://github.com/Microsoft/perfview/blob/master/documentation/TraceEvent/TraceEventLibrary.md for more.
Microsoft.DotNet.PlatformAbstractions
by: Microsoft.DotNet.PlatformAbstractions
- 64 total downloads
- Latest version: 2.1.0
Abstractions for making code that uses file system and environment testable.
Microsoft.EntityFrameworkCore
by: Microsoft
- 1.166k total downloads
- Latest version: 9.0.1
Entity Framework Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations. EF Core works with SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MySQL, PostgreSQL, and other databases through a provider plugin API.
Commonly Used Types:
Microsoft.EntityFrameworkCore.DbContext
Microsoft.EntityFrameworkCore.DbSet
Microsoft.EntityFrameworkCore.Abstractions
by: Microsoft
- 1.446k total downloads
- Latest version: 9.0.1
Provides abstractions and attributes that are used to configure Entity Framework Core
Microsoft.EntityFrameworkCore.Analyzers
by: Microsoft
- 1.17k total downloads
- Latest version: 9.0.1
CSharp Analyzers for Entity Framework Core.
Microsoft.EntityFrameworkCore.Proxies
by: Microsoft
- 274 total downloads
- Latest version: 8.0.12
Lazy loading proxies for Entity Framework Core.
Microsoft.EntityFrameworkCore.Relational
by: Microsoft
- 1.166k total downloads
- Latest version: 9.0.1
Shared Entity Framework Core components for relational database providers.
Microsoft.Extensions.AmbientMetadata.Application
by: Microsoft
- 1 total downloads
- Latest version: 9.0.0
Runtime information provider for application-level ambient metadata.
Microsoft.Extensions.ApiDescription.Server
by: Microsoft
- 1.504k total downloads
- Latest version: 9.0.0
MSBuild tasks and targets for build-time Swagger and OpenApi document generation
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/af22effae4069a5dfb9b0735859de48820104f5b
Microsoft.Extensions.Caching.Abstractions
by: Microsoft
- 3.18k total downloads
- Latest version: 9.0.10
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.Hybrid
by: Microsoft
- 178 total downloads
- Latest version: 9.4.0
Multi-level caching implementation building on and extending IDistributedCache
Microsoft.Extensions.Caching.Memory
by: Microsoft
- 2.435k total downloads
- Latest version: 9.0.4
In-memory cache implementation of Microsoft.Extensions.Caching.Memory.IMemoryCache.
Microsoft.Extensions.Caching.Redis
by: Microsoft
- 77 total downloads
- Latest version: 2.2.0
Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using Redis.
This package was built from the source code at https://github.com/aspnet/Extensions/tree/9bc79b2f25a3724376d7af19617c33749a30ea3a
Microsoft.Extensions.Caching.StackExchangeRedis
by: Microsoft
- 669 total downloads
- Latest version: 9.0.10
Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using Redis.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/5bae930797f60d2d04f3b1df6a33eaca85fc5f28
Microsoft.Extensions.Compliance.Abstractions
by: Microsoft
- 1 total downloads
- Latest version: 9.1.0
Abstractions to help ensure compliant data management.
Microsoft.Extensions.Configuration
by: Microsoft
- 4.181k total downloads
- Latest version: 10.0.0-rc.1.25451.107
Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider.
Microsoft.Extensions.Configuration.Abstractions
by: Microsoft
- 5.69k total downloads
- Latest version: 10.0.0-rc.1.25451.107
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
- 5.045k total downloads
- Latest version: 10.0.0-rc.1.25451.107
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.484k total downloads
- Latest version: 10.0.0-rc.1.25451.107
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
- 1.486k total downloads
- Latest version: 10.0.0-rc.1.25451.107
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.