aspnet
NuGet publisher profile
Packages (1,506)
Microsoft.Extensions.DependencyInjection.Abstractions
Abstractions for dependency injection. Commonly Used Types: Microsoft.Extensions.DependencyInjection.IServiceCollection
Microsoft.Extensions.Logging.Abstractions
Logging abstractions for Microsoft.Extensions.Logging. Commonly Used Types: Microsoft.Extensions.Logging.ILogger Microsoft.Extensions.Logging.ILoggerFactory Microsoft.Extensions.Logging.ILogger<TCategoryName> Microsoft.Extensions.Logging.LogLevel Microsoft.Extensions.Logging.Logger<T> Microsoft.Extensions.Logging.LoggerMessage Microsoft.Extensions.Logging.Abstractions.NullLogger
Microsoft.Extensions.Primitives
Primitives shared by framework extensions. Commonly used types include: Commonly Used Types: Microsoft.Extensions.Primitives.IChangeToken Microsoft.Extensions.Primitives.StringValues Microsoft.Extensions.Primitives.StringSegment
Microsoft.Extensions.Options
Provides a strongly typed way of specifying and accessing settings using dependency injection.
Microsoft.Extensions.Configuration.Abstractions
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.DependencyInjection
Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection.
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
Microsoft.Extensions.Configuration
Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider.
Microsoft.Extensions.Configuration.Binder
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.FileProviders.Abstractions
Abstractions of files and directories. Commonly Used Types: Microsoft.Extensions.FileProviders.IDirectoryContents Microsoft.Extensions.FileProviders.IFileInfo Microsoft.Extensions.FileProviders.IFileProvider
Microsoft.Extensions.Hosting.Abstractions
Hosting and startup abstractions for applications.
Microsoft.Extensions.FileSystemGlobbing
File system globbing to find files matching a specified pattern.
Microsoft.Extensions.FileProviders.Physical
File provider for physical files for Microsoft.Extensions.FileProviders.
Microsoft.Extensions.Caching.Memory
In-memory cache implementation of Microsoft.Extensions.Caching.Memory.IMemoryCache.
Microsoft.Extensions.Caching.Abstractions
Caching abstractions for in-memory cache and distributed cache. Commonly Used Types: Microsoft.Extensions.Caching.Distributed.IDistributedCache Microsoft.Extensions.Caching.Memory.IMemoryCache
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
System.Text.Encoding.CodePages
Provides support for code-page based encodings, including Windows-1252, Shift-JIS, and GB2312. Commonly Used Types: System.Text.CodePagesEncodingProvider
System.Net.Http
Provides a programming interface for modern HTTP applications, including HTTP client components that allow applications to consume web services over HTTP and HTTP components that can be used by both clients and servers for parsing HTTP headers. Commonly Used Types: System.Net.Http.HttpResponseMessage System.Net.Http.DelegatingHandler System.Net.Http.HttpRequestException System.Net.Http.HttpClient System.Net.Http.MultipartContent System.Net.Http.Headers.HttpContentHeaders System.Net.Http.HttpClientHandler System.Net.Http.StreamContent System.Net.Http.FormUrlEncodedContent System.Net.Http.HttpMessageHandler When using NuGet 3.x this package requires at least version 3.4.
Microsoft.Extensions.Configuration.FileExtensions
Provides a base class for file-based configuration providers used with Microsoft.Extensions.Configuration and extension methods for configuring them.
Microsoft.Extensions.DependencyModel
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.
System.ComponentModel.Annotations
Provides attributes that are used to define metadata for objects used as data sources. Commonly Used Types: System.ComponentModel.DataAnnotations.ValidationResult System.ComponentModel.DataAnnotations.IValidatableObject System.ComponentModel.DataAnnotations.ValidationAttribute System.ComponentModel.DataAnnotations.RequiredAttribute System.ComponentModel.DataAnnotations.StringLengthAttribute System.ComponentModel.DataAnnotations.DisplayAttribute System.ComponentModel.DataAnnotations.RegularExpressionAttribute System.ComponentModel.DataAnnotations.DataTypeAttribute System.ComponentModel.DataAnnotations.RangeAttribute System.ComponentModel.DataAnnotations.KeyAttribute When using NuGet 3.x this package requires at least version 3.4.
Microsoft.Extensions.Configuration.Json
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.
System.AppContext
Provides the System.AppContext class, which allows access to the BaseDirectory property and other application specific data. Commonly Used Types: System.AppContext When using NuGet 3.x this package requires at least version 3.4.
Microsoft.Extensions.ObjectPool
A simple object pool implementation. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
System.IO.Pipelines
Single producer single consumer byte buffer management. Commonly Used Types: System.IO.Pipelines.Pipe System.IO.Pipelines.PipeWriter System.IO.Pipelines.PipeReader
Microsoft.AspNetCore.Http.Features
ASP.NET Core HTTP feature interface definitions. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/c0ae1d179dba6f3acd0e55be55718c97c9028698
Microsoft.Extensions.Configuration.EnvironmentVariables
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.AspNetCore.Http.Abstractions
ASP.NET Core HTTP object model for HTTP requests and responses and also common extension methods for registering middleware in an IApplicationBuilder. Commonly used types: Microsoft.AspNetCore.Builder.IApplicationBuilder Microsoft.AspNetCore.Http.HttpContext Microsoft.AspNetCore.Http.HttpRequest Microsoft.AspNetCore.Http.HttpResponse
Microsoft.Extensions.Http
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.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
Microsoft.EntityFrameworkCore
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.Net.Http.Headers
HTTP header parser implementations. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
Microsoft.EntityFrameworkCore.Abstractions
Provides abstractions and attributes that are used to configure Entity Framework Core
Microsoft.AspNetCore.Http
ASP.NET Core default HTTP feature implementations.
System.IO.Compression.ZipFile
Provides classes that support the compression and decompression of streams using file system paths. Commonly Used Types: System.IO.Compression.ZipFile When using NuGet 3.x this package requires at least version 3.4.
Microsoft.EntityFrameworkCore.Analyzers
CSharp Analyzers for Entity Framework Core.
Microsoft.AspNetCore.WebUtilities
ASP.NET Core utilities, such as for working with forms, multipart messages, and query strings. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Hosting.Abstractions
ASP.NET Core hosting and startup abstractions for web applications.
Microsoft.AspNetCore.Hosting.Server.Abstractions
ASP.NET Core hosting server abstractions for web applications.
Microsoft.AspNetCore.Http.Extensions
ASP.NET Core common extension methods for HTTP abstractions, HTTP headers, HTTP request/response, and session state.
Microsoft.Extensions.Logging.Console
Console logger provider implementation for Microsoft.Extensions.Logging.
Microsoft.AspNetCore.Authorization
ASP.NET Core authorization classes. Commonly used types: Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute Microsoft.AspNetCore.Authorization.AuthorizeAttribute This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Logging.Debug
Debug output logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a debugger monitor by writing messages with System.Diagnostics.Debug.WriteLine().
Microsoft.Extensions.Configuration.UserSecrets
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.Hosting
Hosting and startup infrastructures for applications.
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
System.ComponentModel.Primitives
Provides interfaces that are used to implement the run-time and design-time behavior of components. Commonly Used Types: System.ComponentModel.IComponent System.ComponentModel.IContainer System.ComponentModel.ISite System.ComponentModel.ComponentCollection When using NuGet 3.x this package requires at least version 3.4.
System.ComponentModel.TypeConverter
Provides the System.ComponentModel.TypeConverter class, which represents a unified way of converting types of values to other types. Commonly Used Types: System.ComponentModel.TypeConverter System.ComponentModel.TypeConverterAttribute System.ComponentModel.PropertyDescriptor System.ComponentModel.StringConverter System.ComponentModel.ITypeDescriptorContext System.ComponentModel.EnumConverter System.ComponentModel.TypeDescriptor System.ComponentModel.Int32Converter System.ComponentModel.BooleanConverter System.ComponentModel.DoubleConverter When using NuGet 3.x this package requires at least version 3.4.
Microsoft.Extensions.Configuration.CommandLine
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.AspNetCore.Cryptography.Internal
Infrastructure for ASP.NET Core cryptographic packages. Applications and libraries should not reference this package directly. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Logging.EventSource
EventSource/EventListener logger provider implementation for Microsoft.Extensions.Logging.
Microsoft.AspNetCore.Authentication.JwtBearer
ASP.NET Core middleware that enables an application to receive an OpenID Connect bearer token. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Logging.EventLog
Windows Event Log logger provider implementation for Microsoft.Extensions.Logging.
Microsoft.AspNetCore.Routing.Abstractions
ASP.NET Core abstractions for routing requests to application logic and for generating links. Commonly used types: Microsoft.AspNetCore.Routing.IRouter Microsoft.AspNetCore.Routing.RouteData
Microsoft.AspNetCore.Routing
ASP.NET Core middleware for routing requests to application logic and for generating links. Commonly used types: Microsoft.AspNetCore.Routing.Route Microsoft.AspNetCore.Routing.RouteCollection
Microsoft.Extensions.ApiDescription.Server
MSBuild tasks and targets for build-time Swagger and OpenApi document generation
Microsoft.AspNetCore.Authentication.Abstractions
ASP.NET Core common types used by the various authentication components.
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions
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/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.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/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.DataProtection.Abstractions
ASP.NET Core data protection abstractions. Commonly used types: Microsoft.AspNetCore.DataProtection.IDataProtectionProvider Microsoft.AspNetCore.DataProtection.IDataProtector This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.DataProtection
ASP.NET Core logic to protect and unprotect data, similar to DPAPI. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Mvc.Abstractions
ASP.NET Core MVC abstractions and interfaces for action invocation and dispatching, authorization, action filters, formatters, model binding, routing, validation, and more. Commonly used types: Microsoft.AspNetCore.Mvc.IActionResult
Microsoft.AspNetCore.Authentication.Core
ASP.NET Core common types used by the various authentication middleware components.
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
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools.
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
Microsoft.AspNet.WebApi.Client
This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data.
System.Net.NameResolution
Provides the System.Net.Dns class, which enables developers to perform simple domain name resolution. Commonly Used Types: System.Net.Dns System.Net.IPHostEntry When using NuGet 3.x this package requires at least version 3.4.
Microsoft.AspNetCore.Authorization.Policy
ASP.NET Core authorization policy helper classes.
Microsoft.AspNetCore.ResponseCaching.Abstractions
ASP.NET Core response caching middleware abstractions and feature interface definitions.
Microsoft.AspNetCore.Mvc.NewtonsoftJson
ASP.NET Core MVC features that use Newtonsoft.Json. Includes input and output formatters for JSON and JSON PATCH. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
Microsoft.Extensions.WebEncoders
Contains registration and configuration APIs to add the core framework encoders to a dependency injection container. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Razor.Language
Razor is a markup syntax for adding server-side logic to web pages. This package contains the Razor parser and code generation infrastructure. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/64ea4108e7dcf1ca575f8dd2028363b0b1ef6ebc
System.ServiceModel.Primitives
System.ServiceModel.Primitives
Microsoft.Extensions.Localization.Abstractions
Abstractions of application localization services. Commonly used types: Microsoft.Extensions.Localization.IStringLocalizer Microsoft.Extensions.Localization.IStringLocalizer<T> This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
System.Runtime.Serialization.Json
Provides classes for serializing objects to the JavaScript Object Notation (JSON) and deserializing JSON data to objects. Commonly Used Types: System.Runtime.Serialization.Json.DataContractJsonSerializer When using NuGet 3.x this package requires at least version 3.4.
Microsoft.AspNetCore.Mvc.Formatters.Json
ASP.NET Core MVC formatters for JSON input and output and for JSON PATCH input using Json.NET.
Microsoft.CodeAnalysis.Razor
Razor is a markup syntax for adding server-side logic to web pages. This package contains the Razor design-time infrastructure. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/64ea4108e7dcf1ca575f8dd2028363b0b1ef6ebc
Microsoft.EntityFrameworkCore.Tools
Entity Framework Core Tools for the NuGet Package Manager Console in Visual Studio. Enables these commonly used commands: Add-Migration Bundle-Migration Drop-Database Get-DbContext Get-Migration Optimize-DbContext Remove-Migration Scaffold-DbContext Script-Migration Update-Database
Microsoft.AspNetCore.Authentication.OpenIdConnect
ASP.NET Core middleware that enables an application to support the OpenID Connect authentication workflow. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Azure.WebJobs
This package contains the runtime host components of the WebJobs SDK. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708.
Microsoft.AspNetCore.Connections.Abstractions
Core components of ASP.NET Core networking protocol stack. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Localization
Application localization services and default implementation based on ResourceManager to load localized assembly resources. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Http.Polly
The HttpClient factory is a pattern for configuring and retrieving named HttpClients in a composable way. This package integrates IHttpClientFactory with the Polly library, to add transient-fault-handling and resiliency through fluent policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Azure.WebJobs.Core
This package provides the core Types and Attribute definitions for the WebJobs SDK. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708.
Microsoft.AspNetCore.Metadata
ASP.NET Core metadata. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.TestHost
ASP.NET Core web server for writing and running tests. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.App.Ref
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
System.ServiceModel.Http
System.ServiceModel.Http
Microsoft.AspNetCore.Mvc.Razor.Extensions
ASP.NET Core design time hosting infrastructure for the Razor view engine. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/64ea4108e7dcf1ca575f8dd2028363b0b1ef6ebc
Microsoft.AspNetCore.Mvc.DataAnnotations
ASP.NET Core MVC metadata and validation system using System.ComponentModel.DataAnnotations.
System.Diagnostics.FileVersionInfo
Provides the System.Diagnostics.FileVersionInfo class, which allows access to Win32 version resource information for a physical file on disk. Commonly Used Types: System.Diagnostics.FileVersionInfo When using NuGet 3.x this package requires at least version 3.4.
Microsoft.AspNetCore.Cryptography.KeyDerivation
ASP.NET Core utilities for key derivation. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Html.Abstractions
ASP.NET Core HTML abstractions used for building HTML content. Commonly used types: Microsoft.AspNetCore.Html.HtmlString Microsoft.AspNetCore.Html.IHtmlContent
Microsoft.Extensions.FileProviders.Embedded
File provider for files in embedded resources for Microsoft.Extensions.FileProviders.
Microsoft.EntityFrameworkCore.InMemory
In-memory database provider for Entity Framework Core (to be used for testing purposes).
Microsoft.AspNetCore.Diagnostics.Abstractions
ASP.NET Core diagnostics middleware abstractions and feature interface definitions.
Microsoft.AspNetCore.Razor
Razor is a markup syntax for adding server-side logic to web pages. This package contains runtime components for rendering Razor pages and implementing tag helpers. Commonly used types: Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeNameAttribute Microsoft.AspNetCore.Razor.TagHelpers.HtmlTargetElementAttribute Microsoft.AspNetCore.Razor.TagHelpers.ITagHelper
Microsoft.Extensions.Identity.Core
ASP.NET Core Identity is the membership system for building ASP.NET Core web applications, including membership, login, and user data. ASP.NET Core Identity allows you to add login features to your application and makes it easy to customize data about the logged in user. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Data.Sqlite.Core
Microsoft.Data.Sqlite is a lightweight ADO.NET provider for SQLite. This package does not include a copy of the native SQLite library. Commonly Used Types: Microsoft.Data.Sqlite.SqliteCommand Microsoft.Data.Sqlite.SqliteConnection Microsoft.Data.Sqlite.SqliteConnectionStringBuilder Microsoft.Data.Sqlite.SqliteDataReader Microsoft.Data.Sqlite.SqliteException Microsoft.Data.Sqlite.SqliteFactory Microsoft.Data.Sqlite.SqliteParameter Microsoft.Data.Sqlite.SqliteTransaction
Microsoft.AspNetCore.Razor.Runtime
Runtime infrastructure for rendering Razor pages and tag helpers.
EntityFramework
Entity Framework 6 (EF6) is a tried and tested object-relational mapper for .NET with many years of feature development and stabilization.
Microsoft.AspNetCore.Mvc.ApiExplorer
ASP.NET Core MVC API explorer functionality for discovering metadata such as the list of controllers and actions, and their URLs and allowed HTTP methods.
Microsoft.AspNet.WebApi.Core
This package contains the core runtime assemblies for ASP.NET Web API. This package is used by hosts of the ASP.NET Web API runtime. To host a Web API in IIS use the Microsoft.AspNet.WebApi.WebHost package. To host a Web API in your own process use the Microsoft.AspNet.WebApi.SelfHost package.
System.Runtime.Serialization.Xml
Provides classes for serializing objects to the Extensible Markup Language (XML) and deserializing XML data to objects. Commonly Used Types: System.Runtime.Serialization.DataContractSerializer System.Runtime.Serialization.XmlObjectSerializer System.Runtime.Serialization.InvalidDataContractException System.Xml.XmlDictionaryReader System.Xml.XmlDictionaryWriter System.Xml.XmlDictionaryString System.Xml.UniqueId System.Xml.XmlDictionaryReaderQuotas System.Runtime.Serialization.DataContractResolver System.Xml.IXmlDictionary When using NuGet 3.x this package requires at least version 3.4.
System.Net.WebSockets
Provides the System.Net.WebSockets.WebSocket abstract class and related types to allow developers to implement the WebSocket protocol (RFC 6455). WebSockets provide full-duplex communication over a single TCP connection. Commonly Used Types: System.Net.WebSockets.WebSocket System.Net.WebSockets.WebSocketContext System.Net.WebSockets.WebSocketException When using NuGet 3.x this package requires at least version 3.4.
Microsoft.AspNetCore.Mvc.ViewFeatures
ASP.NET Core MVC view rendering features. Contains common types used in most MVC applications as well as view rendering features such as view engines, views, view components, and HTML helpers. Commonly used types: Microsoft.AspNetCore.Mvc.Controller Microsoft.AspNetCore.Mvc.ValidateAntiForgeryTokenAttribute Microsoft.AspNetCore.Mvc.ViewComponent
Microsoft.AspNetCore.Antiforgery
An antiforgery system for ASP.NET Core designed to generate and validate tokens to prevent Cross-Site Request Forgery attacks.
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Authentication
ASP.NET Core common types used by the various authentication middleware components.
Microsoft.Extensions.FileProviders.Composite
Composite file and directory providers for Microsoft.Extensions.FileProviders.
Microsoft.EntityFrameworkCore.Sqlite.Core
SQLite database provider for Entity Framework Core. This package does not include a copy of the native SQLite library.
Microsoft.AspNetCore.Mvc.Razor
ASP.NET Core MVC Razor view engine for CSHTML files.
Microsoft.AspNetCore.Components.Web
Support for rendering ASP.NET Core components for browsers. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Components
Components feature for ASP.NET Core.
Microsoft.AspNet.Razor
This package contains the runtime assemblies for ASP.NET Web Pages. ASP.NET Web Pages and the new Razor syntax provide a fast, terse, clean and lightweight way to combine server code with HTML to create dynamic web content.
Microsoft.Extensions.Identity.Stores
ASP.NET Core Identity is the membership system for building ASP.NET Core web applications, including membership, login, and user data. ASP.NET Core Identity allows you to add login features to your application and makes it easy to customize data about the logged in user. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Cors
CORS middleware and policy for ASP.NET Core to enable cross-origin resource sharing. Commonly used types: Microsoft.AspNetCore.Cors.DisableCorsAttribute Microsoft.AspNetCore.Cors.EnableCorsAttribute
Microsoft.Extensions.PlatformAbstractions
Abstractions that unify behavior and API across .NET Framework, .NET Core and Mono
Microsoft.AspNetCore.Components.Forms
Forms and validation support for Blazor applications. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.WebPages
This package contains core runtime assemblies shared between ASP.NET MVC and ASP.NET Web Pages.
Microsoft.AspNetCore.Mvc.Cors
ASP.NET Core MVC cross-origin resource sharing (CORS) features.
Microsoft.AspNetCore.Mvc.TagHelpers
ASP.NET Core MVC default tag helpers. Contains tag helpers for anchor tags, HTML input elements, caching, scripts, links (for CSS), and more.
Microsoft.JSInterop
Abstractions and features for interop between .NET and JavaScript code. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.Mvc
This package contains the runtime assemblies for ASP.NET MVC. ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that enables a clean separation of concerns and that gives you full control over markup.
Microsoft.AspNetCore.Mvc.RazorPages
ASP.NET Core MVC Razor Pages.
Microsoft.AspNetCore.Mvc.Localization
ASP.NET Core MVC features that enable globalization and localization of applications. Commonly used types: Microsoft.AspNetCore.Mvc.Localization.IHtmlLocalizer<TResource> Microsoft.AspNetCore.Mvc.Localization.IViewLocalizer
Microsoft.AspNetCore.Mvc
ASP.NET Core MVC is a web framework that gives you a powerful, patterns-based way to build dynamic websites and web APIs. ASP.NET Core MVC enables a clean separation of concerns and gives you full control over markup.
Microsoft.AspNetCore.Server.Kestrel
ASP.NET Core Kestrel cross-platform web server.
Microsoft.AspNetCore.Localization
ASP.NET Core middleware for automatically applying culture information to HTTP requests. Culture information can be specified in the HTTP header, query string, cookie, or custom source.
Microsoft.Extensions.Caching.StackExchangeRedis
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/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Web.Infrastructure
This package contains the Microsoft.Web.Infrastructure assembly that lets you dynamically register HTTP modules at run time.
Microsoft.AspNetCore.SignalR.Common
Common serialization primitives for SignalR Clients Servers This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
Microsoft.AspNetCore.Identity.EntityFrameworkCore
ASP.NET Core Identity provider that uses Entity Framework Core. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
Microsoft.VisualStudio.Web.CodeGeneration.Utils
Contains utilities used by ASP.NET Core Code Generation packages.
Microsoft.VisualStudio.Web.CodeGeneration.Templating
Contains Razor based templating host used by ASP.NET Core Code Generators.
Microsoft.AspNetCore.Components.Analyzers
Roslyn analyzers for ASP.NET Core Components. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Owin
Provides a set of helper types and abstractions for simplifying the creation of OWIN components.
Microsoft.Extensions.DiagnosticAdapter
Microsoft extension adapter feature to extend DiagnosticListener. Contains extension methods that extend System.Diagnostics.DiagnosticListener, and enables duck-typing based event handling by using dynamically generated proxy types.
Microsoft.AspNetCore.Http.Connections.Common
Common primitives for ASP.NET Connection Handlers and clients This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.WebApi.WebHost
This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework.
Microsoft.AspNetCore.Server.Kestrel.Core
Core components of ASP.NET Core Kestrel cross-platform web server.
jQuery
jQuery is a new kind of JavaScript Library. jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.AspNetCore.StaticFiles
ASP.NET Core static files middleware. Includes middleware for serving static files, directory browsing, and default files.
Microsoft.AspNetCore.Server.Kestrel.Https
HTTPS support for the ASP.NET Core Kestrel cross-platform web server.
Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions
Transport abstractions for the ASP.NET Core Kestrel cross-platform web server.
Microsoft.AspNetCore.SignalR.Protocols.Json
Implements the SignalR Hub Protocol using System.Text.Json. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.VisualStudio.Web.CodeGeneration.Contracts
Contains interfaces for Project Model and messaging for scaffolding.
Microsoft.AspNetCore.Razor.Design
Razor is a markup syntax for adding server-side logic to web pages. This package contains MSBuild support for Razor.
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.WebApi
This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework.
Microsoft.Azure.WebJobs.Extensions
This package contains Timers and File triggers. For more information, please visit https://azure.microsoft.com/en-us/documentation/articles/websites-webjobs-resources.
Microsoft.AspNetCore.Authentication.Google
ASP.NET Core contains middleware to support Google's OAuth 2.0 authentication workflow. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets
Managed socket transport for the ASP.NET Core Kestrel cross-platform web server.
Microsoft.AspNetCore.Mvc.WebApiCompatShim
Provides compatibility in ASP.NET Core MVC with ASP.NET Web API 2 to simplify migration of existing Web API implementations. Commonly used types: System.Web.Http.ApiController
Microsoft.Azure.WebJobs.Extensions.Http
This package adds binding extensions for Http.
Libuv
Multi-platform support library with a focus on asynchronous I/O.
Microsoft.AspNetCore.Diagnostics
ASP.NET Core middleware for exception handling, exception display pages, and diagnostics information. Includes developer exception page middleware, exception handler middleware, runtime info middleware, status code page middleware, and welcome page middleware
Microsoft.Owin.Security
Common types which are shared by the various authentication middleware components.
Microsoft.AspNetCore.Server.IISIntegration
ASP.NET Core components for working with the IIS AspNetCoreModule.
Microsoft.Extensions.Features
Provides abstractions for a loosly coupled collection of features. Commonly Used Types: Microsoft.AspNetCore.Http.Features.IFeatureCollection Microsoft.AspNetCore.Http.Features.FeatureCollection This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.App.Runtime.linux-x64
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
Microsoft.AspNetCore.HttpOverrides
ASP.NET Core basic middleware for supporting HTTP method overrides. Includes: * X-Forwarded-* headers to forward headers from a proxy. * HTTP method override header.
Microsoft.AspNetCore.Authentication.Cookies
ASP.NET Core middleware that enables an application to use cookie based authentication.
Microsoft.Owin.Host.SystemWeb
OWIN server that enables OWIN-based applications to run on IIS using the ASP.NET request pipeline.
Microsoft.AspNetCore
Microsoft.AspNetCore
System.Net.Http.WinHttpHandler
Provides a message handler for HttpClient based on the WinHTTP interface of Windows. While similar to HttpClientHandler, it provides developers more granular control over the application's HTTP communication than the HttpClientHandler. Commonly Used Types: System.Net.Http.WinHttpHandler
Microsoft.CodeDom.Providers.DotNetCompilerPlatform
Replacement CodeDOM providers that use the new .NET Compiler Platform ("Roslyn") compiler as a service APIs. This provides support for new language features in systems using CodeDOM (e.g. ASP.NET runtime compilation) as well as improving the compilation performance of these systems. This package was built from the source at https://github.com/aspnet/RoslynCodeDomProvider/commit/6e07f00c343d804f2c7398eadfaeeeda23b44a68
System.IO.UnmanagedMemoryStream
Provides classes for access to unmanaged blocks of memory from managed code. Commonly Used Types: System.IO.UnmanagedMemoryStream System.IO.UnmanagedMemoryAccessor When using NuGet 3.x this package requires at least version 3.4.
System.IO.Pipes
Provides a means for interprocess communication through anonymous and/or named pipes. Commonly Used Types: System.IO.Pipes.NamedPipeServerStream System.IO.Pipes.PipeDirection System.IO.Pipes.PipeOptions System.IO.Pipes.PipeTransmissionMode System.IO.Pipes.NamedPipeClientStream System.IO.Pipes.PipeStream When using NuGet 3.x this package requires at least version 3.4.
Microsoft.AspNet.Web.Optimization
ASP.NET Optimization introduces a way to bundle and optimize CSS and JavaScript files.
Microsoft.AspNetCore.App.Runtime.win-x64
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
System.IO.MemoryMappedFiles
Provides classes for using a memory-mapped file, which maps the contents of a file to an application's logical address space. Commonly Used Types: System.IO.MemoryMappedFiles.MemoryMappedViewAccessor System.IO.MemoryMappedFiles.MemoryMappedViewStream System.IO.MemoryMappedFiles.MemoryMappedFile System.IO.MemoryMappedFiles.MemoryMappedFileAccess When using NuGet 3.x this package requires at least version 3.4.
Microsoft.AspNetCore.Mvc.Analyzers
CSharp Analyzers for ASP.NET Core MVC.
Microsoft.AspNetCore.WebSockets
ASP.NET Core web socket middleware for use on top of opaque servers.
Microsoft.Extensions.Options.DataAnnotations
Provides additional DataAnnotations specific functionality related to Options.
Microsoft.AspNetCore.Http.Connections.Client
Client for ASP.NET Core Connection Handlers This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation
Runtime compilation support for Razor views and Razor Pages in ASP.NET Core MVC. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Http.Diagnostics
Telemetry support for HTTP Client.
Microsoft.Extensions.Configuration.Xml
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.Diagnostics.HealthChecks.EntityFrameworkCore
Components for performing health checks using EntityFrameworkCore. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.SpaServices.Extensions
Helpers for building single-page applications on ASP.NET MVC Core. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
ASP.NET Core middleware for Entity Framework Core error pages. Use this middleware to detect and diagnose errors with Entity Framework Core migrations. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Owin.Security.OAuth
Middleware that enables an application to support any standard OAuth 2.0 authentication workflow.
Microsoft.AspNetCore.Identity
ASP.NET Core Identity is the membership system for building ASP.NET Core web applications, including membership, login, and user data. ASP.NET Core Identity allows you to add login features to your application and makes it easy to customize data about the logged in user.
Microsoft.AspNetCore.SignalR.Client
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Modernizr
Modernizr adds classes to the <html> element which allow you to target specific browser functionality in your stylesheet. You don't actually need to write any Javascript to use it. Modernizr is a small and simple JavaScript library that helps you take advantage of emerging web technologies (CSS3, HTML5) while still maintaining a fine level of control over older browsers that may not yet support these new technologies. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.Owin.Security.Cookies
Middleware that enables an application to use cookie based authentication, similar to ASP.NET's forms authentication.
Microsoft.AspNetCore.Authentication.Facebook
ASP.NET Core middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
jQuery.Validation
This jQuery plugin makes simple clientside form validation trivial, while offering lots of option for customization. That makes a good choice if you’re building something new from scratch, but also when you’re trying to integrate it into an existing application with lots of existing markup. The plugin comes bundled with a useful set of validation methods, including URL and email validation, while providing an API to write your own methods. All bundled methods come with default error messages in english and translations into 32 languages. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.AspNetCore.Identity.UI
ASP.NET Core Identity UI is the default Razor Pages built-in UI for the ASP.NET Core Identity framework. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.HostFiltering
ASP.NET Core middleware for filtering out requests with unknown HTTP host headers.
dotnet-ef
Entity Framework Core Tools for the .NET Command-Line Interface. Enables these commonly used dotnet-ef commands: dotnet ef migrations add dotnet ef migrations list dotnet ef migrations script dotnet ef dbcontext info dotnet ef dbcontext scaffold dotnet ef database drop dotnet ef database update
Microsoft.Data.Sqlite
Microsoft.Data.Sqlite is a lightweight ADO.NET provider for SQLite. Commonly Used Types: Microsoft.Data.Sqlite.SqliteCommand Microsoft.Data.Sqlite.SqliteConnection Microsoft.Data.Sqlite.SqliteConnectionStringBuilder Microsoft.Data.Sqlite.SqliteDataReader Microsoft.Data.Sqlite.SqliteException Microsoft.Data.Sqlite.SqliteFactory Microsoft.Data.Sqlite.SqliteParameter Microsoft.Data.Sqlite.SqliteTransaction
Microsoft.Extensions.Configuration.Ini
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.AspNetCore.Authentication.Twitter
ASP.NET Core middleware that enables an application to support Twitter's OAuth 1.0 authentication workflow. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Http.Connections
Components for providing real-time bi-directional communication across the Web.
Microsoft.AspNet.Cors
This package contains the core components to enable Cross-Origin Resource Sharing (CORS) in ASP.NET.
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
Microsoft.AspNetCore.Authentication.OAuth
ASP.NET Core middleware that enables an application to support any standard OAuth 2.0 authentication workflow.
Microsoft.jQuery.Unobtrusive.Validation
jQuery plugin that unobtrusively sets up jQuery.Validation.
Microsoft.AspNetCore.SignalR.Core
Real-time communication framework for ASP.NET Core.
Microsoft.AspNet.Identity.Core
Core interfaces for ASP.NET Identity.
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
Microsoft.AspNetCore.DataProtection.Extensions
Additional APIs for ASP.NET Core data protection. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Hosting.WindowsServices
.NET hosting infrastructure for Windows Services.
Microsoft.Extensions.Caching.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/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.SpaServices
Helpers for building single-page applications on ASP.NET MVC Core. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/a4938d07a5127ffad8466ddf703a6b5b21f4b0c9
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/a4938d07a5127ffad8466ddf703a6b5b21f4b0c9
Microsoft.AspNet.WebApi.Owin
This package allows you to host ASP.NET Web API within an OWIN server and provides access to additional OWIN features.
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv
Libuv transport for the ASP.NET Core Kestrel cross-platform web server. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/64ea4108e7dcf1ca575f8dd2028363b0b1ef6ebc
Microsoft.Extensions.Configuration.AzureKeyVault
Azure KeyVault configuration provider implementation for Microsoft.Extensions.Configuration. This library has been replaced by the following new Azure SDK. https://www.nuget.org/packages/Azure.Extensions.AspNetCore.Configuration.Secrets It is recommended that you move to the new package.
Microsoft.AspNetCore.SignalR
Components for providing real-time bi-directional communication across the Web.
Microsoft.AspNetCore.Components.Authorization
Authentication and authorization support for Blazor applications. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.TelemetryCorrelation
A module that instruments incoming request with System.Diagnostics.Activity and notifies listeners with DiagnosticsSource.
Microsoft.AspNetCore.Authentication.MicrosoftAccount
ASP.NET Core middleware that enables an application to support the Microsoft Account authentication workflow. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.Identity.Owin
Owin implementation for ASP.NET Identity.
Microsoft.AspNet.WebApi.Cors
This package contains the components to enable Cross-Origin Resource Sharing (CORS) in ASP.NET Web API.
Microsoft.AspNetCore.ResponseCompression
ASP.NET Core middleware for HTTP Response compression.
Microsoft.AspNetCore.Server.IIS
Provides support for hosting ASP.NET Core in IIS using the AspNetCoreModule. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/e7f262e33108e92fc8805b925cc04b07d254118b
Microsoft.VisualStudio.Web.CodeGeneration.Tools
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
Microsoft.AspNetCore.Mvc.Formatters.Xml
ASP.NET Core MVC formatters for XML input and output using DataContractSerializer and XmlSerializer.
Microsoft.EntityFrameworkCore.Relational.Design
Shared design-time Entity Framework Core components for relational database providers.
Microsoft.AspNetCore.CookiePolicy
ASP.NET Core cookie policy classes to control the behavior of cookies.
Microsoft.JSInterop.WebAssembly
Abstractions and features for interop between .NET WebAssembly and JavaScript code. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Components.WebAssembly
Build client-side single-page applications (SPAs) with Blazor running under WebAssembly. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Logging.TraceSource
TraceSource logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a trace listener by writing messages with System.Diagnostics.TraceSource.TraceEvent().
Microsoft.AspNetCore.MiddlewareAnalysis
ASP.NET Core middleware for analyzing middleware in the request pipeline with System.Diagnostics.DiagnosticSource. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Session
ASP.NET Core session state middleware.
Microsoft.AspNetCore.Owin
ASP.NET Core component for running OWIN middleware in an ASP.NET Core application, and to run ASP.NET Core middleware in an OWIN application. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Extensions.Logging.AzureAppServices
Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.SignalR.Core
Async signaling library for .NET to help build real-time, multi-user interactive web applications.
Microsoft.AspNetCore.Diagnostics.HealthChecks
ASP.NET Core middleware for returning the results of Health Checks in the application This package was built from the source code at https://github.com/aspnet/Diagnostics/tree/c802d5ef5fba1ba8dfbcb8c3741af2ba15e9d1aa
Microsoft.AspNetCore.DataProtection.StackExchangeRedis
Support for storing data protection keys in Redis. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Server.HttpSys
ASP.NET Core HTTP server that uses the Windows HTTP Server API.
Microsoft.AspNetCore.Rewrite
ASP.NET Core basic middleware for rewriting URLs. Includes: * Support for custom URL rewrite rules * Support for running IIS URL Rewrite module rules * Support for running Apache mod_rewrite rules.
Microsoft.AspNet.Identity.EntityFramework
ASP.NET Identity providers that use Entity Framework.
jQuery.UI.Combined
jQuery UI is an open source library of interface components — interactions, full-featured widgets, and animation effects — based on the stellar jQuery javascript library . Each component is built according to jQuery's event-driven architecture (find something, manipulate it) and is themeable, making it easy for developers of any skill level to integrate and extend into their own code. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.Extensions.Caching.Redis
Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using Redis.
Microsoft.AspNetCore.ResponseCaching
ASP.NET Core middleware for caching HTTP responses on the server.
Microsoft.AspNetCore.Authentication.WsFederation
ASP.NET Core middleware that enables an application to support the WsFederation authentication workflow. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation
Build-time references required to enable Razor view compilation as part of building the application.
Microsoft.Extensions.Configuration.KeyPerFile
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/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Localization.Routing
Provides a request culture provider which gets culture and ui-culture from request's route data.
Microsoft.AspNet.WebApi.HelpPage
The ASP.NET Web API Help Page automatically generates help page content for the web APIs on your site. Visitors to your help page can use this content to learn how to call your web APIs. Everything generated by the help page is fully customizable using ASP.NET MVC and Razor. ASP.NET Web API Help Page is a great addition to any ASP.NET Web API project.
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore
Support for storing keys using Entity Framework Core. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Authentication.Negotiate
ASP.NET Core authentication handler used to authenticate requests using Negotiate, Kerberos, or NTLM. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Owin.Hosting
Provides default infrastructure types for hosting and running OWIN-based applications.
Microsoft.Owin.Security.Jwt
Middleware that enables an application to protect and validate JSON Web Tokens.
Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite
NetTopologySuite support for the Microsoft SQL Server database provider for Entity Framework Core.
Microsoft.AspNetCore.HttpsPolicy
ASP.NET Core basic middleware for supporting HTTPS Redirection and HTTP Strict-Transport-Security.
Microsoft.VisualStudio.Web.BrowserLink
A middleware that supports creating a communication channel between the development environment and one or more web browsers. This package was built from the source code at https://github.com/aspnet/BrowserLink/tree/8cd3e0844d74975060a2bb1abb1e0a5ff943ce45
Microsoft.AspNet.SignalR.SystemWeb
Incredibly simple real-time web for .NET. Components for using ASP.NET SignalR in applications hosted on System.Web.
Microsoft.AspNetCore.Components.WebAssembly.Authentication
Build client-side authentication for single-page applications (SPAs). This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Owin.Cors
This package contains the components to enable Cross-Origin Resource Sharing (CORS) in OWIN middleware.
Microsoft.Owin.Security.OpenIdConnect
Middleware that enables an application to use OpenIdConnect for authentication.
Microsoft.Extensions.ApiDescription.Client
MSBuild tasks and targets for code generation This package was built from the source code at https://github.com/dotnet/dotnet/tree/e2c1e00b3d0f96afb892fb261d5921565b400246
Microsoft.jQuery.Unobtrusive.Ajax
jQuery plugin that unobtrusively sets up jQuery Ajax.
Microsoft.Owin.Host.HttpListener
OWIN server built on the .NET Framework's HttpListener class. Currently the default server used for self-hosting.
Microsoft.AspNet.SignalR.JS
JavaScript client for ASP.NET SignalR.
Microsoft.AspNetCore.SignalR.StackExchangeRedis
Provides scale-out support for ASP.NET Core SignalR using a Redis server and the StackExchange.Redis client. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.SignalR
Incredibly simple real-time web for .NET. This package pulls in the server components and JavaScript client required to use SignalR in an ASP.NET application.
Microsoft.AspNetCore.App.Runtime.linux-arm64
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
Microsoft.AspNetCore.Components.WebAssembly.DevServer
Deprecated. Use Microsoft.AspNetCore.Components.Gateway instead of Microsoft.AspNetCore.Components.WebAssembly.DevServer.
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
Microsoft.AspNetCore.AzureAppServicesIntegration
ASP.NET Core integration with Azure AppServices. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson
Implements the SignalR Hub Protocol using Newtonsoft.Json. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.DataProtection.AzureStorage
Microsoft Azure Blob storage support as key store. This library has been replaced by the following new Azure SDK. https://www.nuget.org/packages/Azure.Extensions.AspNetCore.DataProtection.Blobs It is recommended that you move to the new package. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/d1fa2cb155ab9226f20b87ab0d7a1eb16b8a8b69
Microsoft.AspNetCore.HeaderPropagation
ASP.NET Core middleware to propagate HTTP headers from the incoming request to the outgoing HTTP Client requests This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Owin.Security.Google
Contains middlewares to support Google's OAuth 2.0 authentication workflow.
Microsoft.AspNetCore.AzureAppServices.HostingStartup
ASP.NET Core lightup integration with Azure AppServices. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
Microsoft.Owin.Security.Facebook
Middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.
Microsoft.Owin.Security.MicrosoftAccount
Middleware that enables an application to support the Microsoft Account authentication workflow.
Microsoft.Extensions.CommandLineUtils
Command-line parsing API. Commonly used types: Microsoft.Extensions.CommandLineUtils.CommandLineApplication Microsoft.Extensions.CommandLineUtils.CommandOption
Microsoft.AspNetCore.App.Runtime.linux-musl-x64
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
Microsoft.Owin.Security.Twitter
Middleware that enables an application to support Twitter's OAuth 1.0 authentication workflow.
Microsoft.EntityFrameworkCore.SqlServer.Abstractions
Provides abstractions that are used by models in conjunction with the SQL Server EF Core provider Commonly Used Types: Microsoft.EntityFrameworkCore.HierarchyId
Microsoft.AspNet.SignalR.Client
.NET client for ASP.NET SignalR.
Microsoft.EntityFrameworkCore.SqlServer.HierarchyId
Adds hierarchyid support to the SQL Server EF Core provider
Microsoft.AspNetCore.App.Runtime.osx-x64
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
Microsoft.AspNetCore.Components.WebAssembly.Server
Runtime server features for ASP.NET Core Blazor applications. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Authentication.AzureAD.UI
ASP.NET Core Azure Active Directory Integration provides components for easily integrating Azure Active Directory authentication within your ASP.NET Core application. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ab1f1c636afa3a6607f2d67bc387b586596d1d38
Microsoft.AspNetCore.ApplicationInsights.HostingStartup
ASP.NET Core lightup integration with Application Insights.
Microsoft.EntityFrameworkCore.Sqlite.Design
Design-time Entity Framework Core functionality for SQLite
Microsoft.AspNetCore.App.Runtime.win-x86
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
Microsoft.AspNet.WebApi.OData
This package contains everything you need to create OData endpoints using ASP.NET Web API and to support OData query syntax for your web APIs.
Microsoft.Web.Xdt
Microsoft Xml Document Transformation (XDT) enables transformig XML files. This is the same technology used to transform web.config files for Visual Studio web projects.
Microsoft.AspNet.WebApi.OwinSelfHost
This package allows you to host ASP.NET Web API within your own process using the OWIN HttpListener server. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework.
Microsoft.AspNet.WebPages.Data
This package contains the runtime assemblies for ASP.NET Web Pages. ASP.NET Web Pages and the new Razor syntax provide a fast, terse, clean and lightweight way to combine server code with HTML to create dynamic web content.
Microsoft.AspNet.WebPages.WebData
This package contains the runtime assemblies for ASP.NET Web Pages. ASP.NET Web Pages and the new Razor syntax provide a fast, terse, clean and lightweight way to combine server code with HTML to create dynamic web content.
Microsoft.AspNetCore.SignalR.Protocols.MessagePack
Implements the SignalR Hub Protocol over MsgPack. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.Mvc.Razor.Host
ASP.NET Core MVC design time hosting infrastructure for the Razor view engine.
Microsoft.Web.WebJobs.Publish
This NuGet package is used to help support deployment of Azure WebJobs from within Microsoft Visual Studio.
Microsoft.AspNet.Providers.Core
ASP.NET Universal Providers add provider support in ASP.NET 4 for all editions of SQL Server 2005 and later and to SQL Azure. If you use these providers to develop your application, the application will be ready for cloud environments like Azure. Other than supporting additional storage options, the providers work like the existing SQL-based providers, so that you can easily switch an application to use cloud storage via SQL Azure.
Microsoft.AspNetCore.Authentication.Certificate
ASP.NET Core middleware that enables an application to support certificate authentication. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.EntityFrameworkCore.Cosmos
Azure Cosmos provider for Entity Framework Core.
Microsoft.AspNetCore.SpaProxy
Helpers for launching the SPA CLI proxy automatically when the application starts in ASP.NET MVC Core. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Configuration.ConfigurationBuilders.Base
In .Net 4.7.1, the configuration system allows applications to use ConfigurationBuilders to build up and modify configuration at runtime when it is loaded. This package provides a base framework to ease development of basic key/value configuration builders.
Microsoft.Extensions.Globalization.CultureInfoCache
Provides cached instances of CultureInfo using a generated list of known culture names for use in scenarios where unbounded CultureInfo creation is undesirable.
Microsoft.NET.Sdk.Razor
Razor is a markup syntax for adding server-side logic to web pages. This package contains MSBuild support for Razor. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/a4938d07a5127ffad8466ddf703a6b5b21f4b0c9
Microsoft.AspNet.Mvc.FixedDisplayModes
The previous version of this package contained a workaround for a bug affecting mobile view caching in ASP.NET MVC 4. As of ASP.NET MVC 5 this workaround is no longer needed. This package can be safely removed without affecting your application.
AntiXSS
AntiXSS is an encoding library which uses a safe list approach to encoding. It provides Html, XML, Url, Form, LDAP, CSS, JScript and VBScript encoding methods to allow you to avoid Cross Site Scripting attacks. This library is part of the Microsoft SDL tools.
Microsoft.AspNetCore.SystemWebAdapters
A collection of adapters that help with migrating from System.Web.dll based ASP.NET projects to ASP.NET Core projects by providing implementations of common System.Web APIs for use in ASP.NET Core apps.
Microsoft.Extensions.Hosting.Systemd
.NET hosting infrastructure for Systemd Services.
Microsoft.AspNetCore.Hosting.WindowsServices
ASP.NET Core hosting infrastructure and startup logic for web applications running within a Windows service. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.WebApi.Tracing
Enables ASP.NET Web API tracing using System.Diagnostics.
Microsoft.AspNetCore.App.Runtime.osx-arm64
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
Microsoft.EntityFrameworkCore.SqlServer.Design
Design-time Entity Framework Core Functionality for Microsoft SQL Server.
Microsoft.Azure.WebJobs.Logging.ApplicationInsights
This package adds Application Insights based logging capabilities to the WebJobs SDK. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708.
Microsoft.AspNetCore.Components.WebView
Build desktop applications with Blazor and a webview. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Owin.FileSystems
This package contains file system abstractions and implementations.
Microsoft.Owin.StaticFiles
This package contains OWIN middleware that handle requests for file system resources including files and directories.
Microsoft.Extensions.Diagnostics.Testing
Hand-crafted fakes to make telemetry-related testing easier.
Microsoft.AspNetCore.SignalR.Redis
Redis for ASP.NET Core SignalR.
Microsoft.Owin.Security.ActiveDirectory
Middleware that enables an application to use Microsoft's technology for authentication.
AjaxControlToolkit
AjaxControlToolkit contains a rich set of controls that you can use to build highly responsive and interactive AJAX-enabled Web applications. AjaxControlToolkit contains more than 40 controls, including the AutoComplete, CollapsiblePanel, ColorPicker, MaskedEdit, Calendar, Accordion, and Watermark controls. Using AjaxControlToolkit, you can build AJAX-enabled ASP.NET Web Forms applications by dragging-and-dropping Toolkit controls from the Visual Studio Toolbox onto a Web Forms page.
Microsoft.AspNet.SessionState.SessionStateModule
In .Net 4.6.2, asp.net enables plugin async SessionState module which is a good fit for the non-in-memory SessionState data store. This async SessionState module provides the extensibility to plugin an async version of SessionState provider.
Microsoft.EntityFrameworkCore.Tools.DotNet
Entity Framework Core .NET Command Line Tools. Includes dotnet-ef.
Microsoft.AspNetCore.DataProtection.AzureKeyVault
Microsoft Azure KeyVault key encryption support. This library has been replaced by the following new Azure SDK. https://www.nuget.org/packages/Azure.Extensions.AspNetCore.DataProtection.Keys It is recommended that you move to the new package. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/d1fa2cb155ab9226f20b87ab0d7a1eb16b8a8b69
Microsoft.Owin.Diagnostics
Provides middleware components to assist in developing OWIN-based applications.
Microsoft.AspNetCore.App.Runtime.win-arm64
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
EntityFramework.SqlServerCompact
Allows SQL Server Compact 4.0 to be used with Entity Framework.
Microsoft.AspNet.WebPages.OAuth
This package contains the runtime assemblies for ASP.NET Web Pages. ASP.NET Web Pages and the new Razor syntax provide a fast, terse, clean and lightweight way to combine server code with HTML to create dynamic web content.
Microsoft.Web.LibraryManager.Build
MSBuild target for the Visual Studio Library Manager
Microsoft.Owin.Testing
Provides helper classes for unit testing OWIN components.
Microsoft.AspNet.Providers.LocalDb
ASP.NET Universal Providers add provider support in ASP.NET 4 for all editions of SQL Server 2005 and later and to SQL Azure. If you use these providers to develop your application, the application will be ready for cloud environments like Azure. Other than supporting additional storage options, the providers work like the existing SQL-based providers, so that you can easily switch an application to use cloud storage via SQL Azure.
Microsoft.AspNet.WebHelpers
This package contains web helpers to easily add functionality to your site such as Captcha validation, Twitter profile and search boxes, Gravatars, Video, Bing search, site analytics or themes.
Microsoft.Configuration.ConfigurationBuilders.Environment
A basic key/value Configuration Builder for the .Net Framework that draws from environment variables.
System.Json
System.Json
Microsoft.Azure.WebJobs.ServiceBus
Package Description
Microsoft.AspNetCore.ApiAuthorization.IdentityServer
ASP.NET Core API Authorization package powered by Identity Server. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/fb4b5a21ebd67b31fff4ddf5c039181da504c932
Microsoft.Authentication.WebAssembly.Msal
Authenticate your Blazor webassembly applications with Azure Active Directory and Azure Active Directory B2C This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.WebApi.SelfHost
This is a legacy package for hosting ASP.NET Web API within your own process (outside of IIS). Please use the Microsoft.AspNet.WebApi.OwinSelfHost package for new projects.
System.IO.FileSystem.DriveInfo
Provides the System.IO.DriveInfo class, which enables developers to query local drive information. Commonly Used Types: System.IO.DriveInfo System.IO.DriveType System.IO.DriveNotFoundException When using NuGet 3.x this package requires at least version 3.4.
Microsoft.AspNet.Web.Optimization.WebForms
A Web Forms control for Microsoft.AspNet.Web.Optimization
Microsoft.Owin.SelfHost
Includes components needed to host an OWIN-based application in a custom process.
Microsoft.AspNetCore.Grpc.JsonTranscoding
HTTP API for gRPC ASP.NET Core This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
AspNet.ScriptManager.jQuery
This package contains the AspNet.ScriptManager.jQuery assembly that will automatically register jQuery 3.5.0 with the ScriptManager as "jquery".
Microsoft.Owin.Security.WsFederation
Middleware that enables an application to use WsFederation for authentication.
Microsoft.Extensions.Logging.Filter
Provides a common way to filter log messages across all registered logger providers.
Microsoft.SqlServer.Compact
SQL Server Compact. An embedded SQL database.
Microsoft.AspNet.FriendlyUrls.Core
A library that enables automatic resolution of extensionless URLs to ASP.NET file-based handlers, e.g. ASPX pages.
Microsoft.dotnet-openapi
Command line tool to add an OpenAPI service reference This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.ConcurrencyLimiter
ASP.NET Core middleware for queuing incoming HTTP requests, to avoid threadpool starvation. This package was built from the source code at https://github.com/dotnet/dotnet/tree/95017c711e6afc1085133d440e42b4bd78155701
Microsoft.AspNetCore.Components.DataAnnotations.Validation
Provides experimental support for validation using DataAnnotations. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/5da314644ae882ff22fb43101d0c3d89a35c40e9
Microsoft.AspNet.ScriptManager.WebForms
This package contains the Microsoft.ScriptManager.WebForms assembly that will automatically register the Microsoft Ajax optimization bundle for Web Forms with ScriptManager.
Microsoft.AspNet.ScriptManager.MSAjax
This package contains the Microsoft.ScriptManager.MSAjax assembly that will automatically register the Microsoft Ajax optimization bundle for Web Forms with ScriptManager.
Microsoft.AspNetCore.RateLimiting
ASP.NET Core middleware for enforcing rate limiting in an application This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/b12b77b241f0a093d53508c3cb2084860bd5339d
Microsoft.AspNet.FriendlyUrls
Adds a mobile master page and a view switcher user control to enable switching between mobile and desktop views using ASP.NET Friendly URLs. Note: This package contains content for C# Web Application Projects (WAPs) only.
Microsoft.AspNet.Providers
ASP.NET Universal Providers add provider support in ASP.NET 4 for all editions of SQL Server 2005 and later and to SQL Azure. If you use these providers to develop your application, the application will be ready for cloud environments like Azure. Other than supporting additional storage options, the providers work like the existing SQL-based providers, so that you can easily switch an application to use cloud storage via SQL Azure.
Microsoft.AspNetCore.Authentication.AzureADB2C.UI
ASP.NET Core Azure Active Directory B2C Integration provides components for easily integrating Azure Active Directory B2C authentication within your ASP.NET Core application. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ab1f1c636afa3a6607f2d67bc387b586596d1d38
Microsoft.Configuration.ConfigurationBuilders.UserSecrets
A basic key/value Configuration Builder for the .Net Framework that draws from a a 'secrets' file outside of source control.
Microsoft.AspNetCore.App.Runtime.linux-arm
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
Microsoft.Extensions.SecretManager.Tools
Command line tool to manage user secrets for Microsoft.Extensions.Configuration.
Microsoft.AspNet.SignalR.Owin
OWIN componenets for ASP.NET SignalR.
Microsoft.AspNetCore.SystemWebAdapters.Abstractions
A collection of abstractions to provide support for enabling configuration for Microsoft.AspNetCore.SystemWebAdapters.
AspNet.ScriptManager.bootstrap
This package contains the AspNet.ScriptManager.bootstrap assembly that will automatically register bootstrap 5.2.3 with the ScriptManager as "bootstrap".
Microsoft.AspNet.SignalR.SqlServer
Core server components for ASP.NET SignalR.
Microsoft.Owin.Security.Interop
A compatibility layer for sharing authentication tickets between Microsoft.Owin.Security and Microsoft.AspNetCore.Authentication.
Microsoft.DotNet.Watcher.Tools
Command line tool to watch for source file changes during development and restart the dotnet command.
Microsoft.AspNet.SignalR.Redis
Redis messaging backplane for scaling out of ASP.NET SignalR applications in a web-farm.
Microsoft.AspNetCore.Components.QuickGrid
Provides a simple and convenient data grid component for common grid rendering scenarios and serves as a reference architecture and performance baseline for building data grid components. If you're using Entity Framework Core for your grid IQueryables, consider using the <a href="https://www.nuget.org/packages/Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter">Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter</a> package. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
System.Web.Http.Common
This package contains common libraries used by both ASP.NET MVC and ASP.NET Web API.
jQuery.Migrate
Migrate older jQuery code to jQuery 1.9+ NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.AspNetCore.Grpc.Swagger
Swagger for gRPC ASP.NET Core This package was built from the source code at https://github.com/dotnet/dotnet/tree/ba53d0ed335bed4ab7bfd01988c8e3953ee5ffbe
Microsoft.AspNetCore.SystemWebAdapters.CoreServices
A collection of services to provide support for enabling configuration for Microsoft.AspNetCore.SystemWebAdapters.
Microsoft.AspNetCore.App.Runtime.linux-musl-arm64
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
jquery.cookie
A simple, lightweight jQuery plugin for reading, writing and deleting cookies. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.Configuration.ConfigurationBuilders.Azure
A set of Configuration Builders for the .Net Framework that draw from Azure resources.
Microsoft.AspNetCore.AzureAppServices.SiteExtension
This site extension enables logging integration for ASP.NET Core applications on Azure App Service. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNetCore.AzureKeyVault.HostingStartup
ASP.NET Core lightup integration with Azure KeyVault.
Microsoft.Owin.Host.SystemWeb.es
Este paquete contiene los ensamblados satélite en español para host de ASP.NET para aplicaciones web OWIN.
System.Runtime.CompilerServices.VisualC
Provides support for C++/CLI language features. Commonly Used Types: System.Runtime.CompilerServices.CallConvCdecl System.Runtime.CompilerServices.CallConvStdcall System.Runtime.CompilerServices.CallConvThiscall System.Runtime.CompilerServices.IsLong System.Runtime.CompilerServices.IsSignUnspecifiedByte System.Runtime.CompilerServices.IsImplicitlyDereferenced System.Runtime.CompilerServices.IsBoxed System.Runtime.CompilerServices.NativeCppClassAttribute System.Runtime.CompilerServices.IsUdtReturn System.Runtime.CompilerServices.CallConvFastcall When using NuGet 3.x this package requires at least version 3.4.
Microsoft.Owin.Host.SystemWeb.fr
Ce package contient les assemblys satellites en français pour l’hôte ASP.NET des applications Web OWIN.
Microsoft.Owin.Host.SystemWeb.ja
このパッケージには、ASP.NET Host for OWIN Web Applications の日本語サテライト アセンブリが含まれています。
Microsoft.Net.Http.Server
.NET HTTP server that uses the Windows HTTP Server API.
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis
Output cache implementation of Microsoft.AspNetCore.OutputCaching.IOutputCacheStore using Redis. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.SignalR.SelfHost
This package includes the required dependencies for self-hosting SignalR in a process outside of IIS using OWIN and HTTPListener.
Microsoft.Owin.Host.SystemWeb.de
Dieses Paket enthält die deutschen Satellitenassemblys für den Microsoft ASP.NET-Host für OWIN-Webanwendungen.
Microsoft.AspNet.Mvc.Futures
ASP.NET MVC Futures includes unsupported prototype features for ASP.NET MVC, from the MVC team.
Microsoft.Owin.Host.SystemWeb.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Host for OWIN Web Applications.
Microsoft.Owin.Host.SystemWeb.pt-br
Este pacote contém os assemblies satélite pt-br do Host do Microsoft ASP.NET para Aplicativos Web OWIN.
Microsoft.Owin.Host.SystemWeb.it
Il pacchetto contiene gli assembly satellite dell'host ASP.NET per applicazioni Web di OWIN per l'italiano.
Microsoft.Owin.Host.SystemWeb.cs
Balíček obsahuje česká satelitní sestavení pro Microsoft ASP.NET Host pro webové aplikace OWIN.
Microsoft.Owin.Host.SystemWeb.ko
이 패키지에는 OWIN 웹 응용 프로그램용 ASP.NET 호스트용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Host.SystemWeb.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące hosta platformy ASP.NET dla aplikacji sieci Web środowiska OWIN.
Microsoft.Owin.Host.SystemWeb.tr
Bu paket OWIN Web Uygulamaları ASP.NET Ana Bilgisayarı Türkçe yardımcı derlemeleri içerir.
Mvc2Futures
ASP.NET MVC 2 Futures includes unsupported prototype features for ASP.NET MVC 2, from the MVC team.
Microsoft.AspNet.SignalR.StackExchangeRedis
Redis messaging backplane for scaling out of ASP.NET SignalR applications in a web-farm.
Microsoft.VisualStudio.Web.BrowserLink.12.0
Microsoft.VisualStudio.BrowserLink.12.0 contracts assembly for Visual Studio.
Microsoft.AspNetCore.Mvc.Api.Analyzers
CSharp Analyzers for ASP.NET Core MVC.
Microsoft.VisualStudio.TaskRunnerExplorer.14.0
Microsoft.VisualStudio.TaskRunnerExplorer.14.0 contracts assembly for Visual Studio.
MicrosoftWebMvc
ASP.NET MVC 2 Futures includes unsupported prototype features for ASP.NET MVC 2, from the MVC team.
jQuery.Validation.Unobtrusive
Legacy package, jQuery.Validation.Unobtrusive is now included in the 'Microsoft.jQuery.Unobtrusive.Validation' package.
Microsoft.NET.Sdk.Aspire.Manifest-9.0.100-preview.1
.NET Aspire workload manifest
Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite
NetTopologySuite support for the SQLite database provider for Entity Framework Core.
Microsoft.Azure.WebJobs.Extensions.SendGrid
This package contains SendGrid binding extensions.
Microsoft.AspNet.Mvc.es
Este paquete contiene los ensamblados satélites en español para ASP.NET MVC.
Microsoft.AspNet.WebPages.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web Pages 3.
Microsoft.AspNet.Razor.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Razor.
jquery.mobile
A unified user interface system across all popular mobile device platforms, built on the rock-solid jQuery and jQuery UI foundation. Its lightweight code is built with progressive enhancement, and has a flexible, easily themeable design. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.Owin.Security.es
Este paquete contiene los ensamblados satélite en español de Microsoft Owin Security
Microsoft.AspNet.WebHooks.Common
This package provides common functionality for sending and receiving WebHooks using ASP.NET.
Mvc3Futures
ASP.NET MVC Futures includes unsupported prototype features for ASP.NET MVC 3, from the MVC team.
Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter
Provides an Entity Framework Core adapter for the <a href="https://www.nuget.org/packages/Microsoft.AspNetCore.Components.QuickGrid">Microsoft.AspNetCore.Components.QuickGrid</a> package. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Crank.Agent
The benchmarking agent
Microsoft.VisualStudio.Web.BrowserLink.Loader
A middleware that supports creating a communication channel between the development environment and one or more web browsers.
Microsoft.AspNet.SignalR.ServiceBus3
Service Bus v3 messaging backplane for scaling out of ASP.NET SignalR applications in a web-farm.
System.Web.Providers
Legacy package, System.Web.Providers is now included in the 'Microsoft.AspNet.Providers' package.
Microsoft.Owin.Security.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Security
Microsoft.Configuration.ConfigurationBuilders.AzureAppConfiguration
A set of Configuration Builders for the .Net Framework that draw from Azure AppConfiguration stores.
Microsoft.AspNetCore.Components.WebAssembly.HttpHandler
Package Description This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/979632683c720152cc04d0684644c40512f4e953
jQuery.Ajax.Unobtrusive
Legacy package, jQuery.Ajax.Unobtrusive is now included in the 'Microsoft.jQuery.Unobtrusive.Ajax' package.
Microsoft.AspNet.WebApi.Client.es
Este paquete contiene los ensamblados satélites en español para las ASP.NET Web API Client Libraries.
Microsoft.AspNet.WebApi.Core.es
Este paquete contiene los ensamblados satélites en español para las Microsoft ASP.NET Web API Core Libraries (RC).
Microsoft.AspNetCore.Diagnostics.Elm
ASP.NET Core Error Logging Middleware (ELM) to capture and display request logs.
Microsoft.AspNet.WebApi.WebHost.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web API Web Host.
Microsoft.AspNet.WebPages.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web Pages 3.
Microsoft.AspNet.Razor.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Razor.
Mvc4Futures
ASP.NET MVC Futures includes unsupported prototype features for ASP.NET MVC, from the MVC team.
Microsoft.AspNet.Mvc.fr
Ce package inclut les assemblys satellites Français pour ASP.NET MVC.
Microsoft.Web.LibraryManager.Cli
Command line tool for Library Manager
AspNet.ScriptManager.jQuery.UI.Combined
This package contains the AspNet.ScriptManager.jQuery.UI.Combined assembly that will automatically register jQuery.UI.Combined 1.13.2 with the ScriptManager as "jquery.ui.combined".
Microsoft.AspNet.WebHooks.Receivers
This package provides a uniform model for receiving WebHooks from an open-ended set of WebHook generators such as Dropbox, GitHub, Slack, and many more.
Microsoft.AspNetCore.Components.CustomElements
Provides a mechanism for using Blazor components as custom HTML elements. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
microsoft-web-helpers
This package contains web helpers to easily add functionality to your site such as Captcha validation, Twitter profile and search boxes, Gravatars, Video, Bing search, site analytics or themes. This package is not compatible with ASP.NET MVC.
Microsoft.AspNet.WebUtilities
ASP.NET 5 common helper methods.
Microsoft.AspNet.SignalR.ServiceBus
Service Bus messaging backplane for scaling out of ASP.NET SignalR applications in a web-farm.
Microsoft.AspNet.Http.Extensions
ASP.NET 5 common extension methods for HTTP abstractions and IApplicationBuilder.
Microsoft.AspNet.Identity.EntityFramework.es
Este paquete contiene los ensamblados satélite de español para las bibliotecas de ASP.NET Identity Entity Framework.
Microsoft.AspNetCore.Server.WebListener
ASP.NET Core HTTP server for Windows.
Microsoft.AspNet.Http.Features
ASP.NET 5 HTTP feature interface definitions.
Microsoft.AspNet.Mvc.zh-Hans
此程序包包含 ASP.NET MVC 的简体中文附属程序集。
Microsoft.AspNet.Http.Abstractions
ASP.NET 5 HTTP object model. HttpContext and family.
Microsoft.AspNet.Razor.zh-Hans
此程序包包含 ASP.NET Razor 的简体中文附属程序集。
Microsoft.AspNet.FileProviders.Abstractions
ASP.NET 5 file provider interfaces.
Microsoft.AspNet.WebPages.zh-Hans
此程序包包含 ASP.NET Web Pages 3 的简体中文附属程序集。
WebMatrix.WebData
Legacy package, WebMatrix.WebData is now included in the 'Microsoft.AspNet.WebPages.WebData' package.
Microsoft.AspNet.Identity.EntityFramework.fr
Ce package contient les assemblys satellites en français pour les bibliothèques ASP.NET Identity Entity Framework.
Microsoft.AspNet.Http
ASP.NET 5 HTTP feature implementations.
Microsoft.AspNet.SignalR.Utils
Command line utilities for ASP.NET SignalR. This package was built from the source at: https://github.com/SignalR/SignalR/tree/7f53f266daf1aad3dabb1b6d7a71d4c1501ec8dc
Microsoft.AspNet.Identity.EntityFramework.ja
このパッケージには、ASP.NET Identity Entity Framework ライブラリの日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.Mvc.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET MVC.
Microsoft.AspNet.Hosting.Abstractions
ASP.NET 5 Hosting abstractions.
Microsoft.AspNetCore.Proxy
Proxy Library
dotnet-aspnet-codegenerator
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
Microsoft.AspNet.Identity.EntityFramework.de
Dieses Paket enthält die deutschen Satellitenassemblys für die ASP.NET Identity Entity Framework-Bibliotheken.
Microsoft.AspNet.WebApi.Core.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web API Core Libraries.
Microsoft.AspNet.WebApi.Client.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web API Client Libraries.
Microsoft.AspNet.Identity.EntityFramework.pt-br
Este pacote contém os assemblies satélite em português do Brasil para as Bibliotecas do ASP.NET Identity Entity Framework.
Microsoft.AspNet.Web.Optimization.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web Optimization.
Microsoft.AspNet.FileProviders.Physical
Implementation of ASP.NET 5 file provider abstractions for physical files.
Microsoft.AspNet.WebApi.WebHost.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web API Web Host.
Microsoft.AspNet.Razor.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET Razor.
Microsoft.AspNet.Identity.EntityFramework.ru
Этот пакет содержит русские вспомогательные сборки для библиотек ASP.NET Identity Entity Framework.
Microsoft.AspNet.Identity.EntityFramework.it
Questo pacchetto contiene gli assembly satellite per l'italiano relativi alle librerie di ASP.NET Identity Entity Framework.
Microsoft.AspNet.Identity.EntityFramework.ko
이 패키지에는 ASP.NET Identity Entity Framework 라이브러리용 한국어 위성 어셈블리가 포함되어 있습니다.
Mono.WebAssembly.Interop
Abstractions and features for interop between Mono WebAssembly and JavaScript code. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/cdfa43bbe0ecc13757cc6517c9a253de77c3ec56
Microsoft.AspNet.WebPages.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET Web Pages 3.
Microsoft.AspNet.Hosting
ASP.NET 5 core hosting infrastructure and startup logic for web applications.
Microsoft.AspNet.Identity.EntityFramework.pl
Ten pakiet zawiera zestawy towarzyszące bibliotek pakietu ASP.NET Identity Entity Framework następującego języka: Polski.
Microsoft.AspNet.SignalR.Core.es
Este paquete contiene los ensamblados satélite de español para ASP.NET SignalR Core.
Microsoft.AspNet.Membership.OpenAuth
A series of helpers to enable using DotNetOpenAuth in an ASP.NET application that utilizes the Membership system for user management.
Microsoft.AspNet.WebApi.WebHost.zh-Hans
此程序包包含 ASP.NET Web API Web Host 的简体中文附属程序集。
Microsoft.AspNet.Identity.EntityFramework.cs
Balíček obsahuje česká satelitní sestavení pro knihovny ASP.NET Identity Entity Framework.
Microsoft.AspNet.Identity.EntityFramework.tr
Bu paket, ASP.NET Identity Entity Framework Kitaplıkları için Türkçe uydu derlemelerini içeriyor.
Microsoft.AspNetCore.Buffering
ASP.NET Core middleware for buffering response bodies.
Microsoft.AspNet.SignalR.Core.fr
Ce package inclut les assemblys satellites en français pour ASP.NET SignalR Core.
Microsoft.AspNet.SignalR.Core.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET SignalR Core.
Microsoft.AspNet.WebApi.Client.zh-Hans
此程序包包含 ASP.NET Web API Client Libraries 的简体中文附属程序集。
Microsoft.AspNet.WebApi.Core.zh-Hans
此程序包包含 ASP.NET Web API Core Libraries 的简体中文附属程序集。
Microsoft.AspNet.SignalR.Core.tr
Bu paket ASP.NET SignalR Core için Türkçe uydu derlemelerini içerir.
Microsoft.Web.Deployment
Web Deployment Framework
Microsoft.AspNet.SignalR.Core.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET SignalR Core.
WebMatrix.Data
Legacy package, WebMatrix.Data is now included in the 'Microsoft.AspNet.WebPages.Data' package.
Microsoft.AspNet.Cryptography.Internal
Infrastructure for ASP.NET 5 cryptographic packages. Developers should not reference this package.
Microsoft.Extensions.OptionsModel
Provides a strongly typed way of specifying and accessing settings using dependency injection.
Microsoft.AspNetCore.Razor.Tools
TagHelper tooling for .NET Core CLI. Contains the dotnet-razor-tooling command used to resolve TagHelperDescriptors for projects at design-time.
Microsoft.AspNet.Mvc.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET MVC.
Microsoft.Extensions.WebEncoders.Core
Contains core encoders for HTML, JavaScript strings, and URLs.
Microsoft.AspNet.StaticFiles
ASP.NET 5 static files middleware.
Microsoft.AspNetCore.DataProtection.SystemWeb
A component to allow the ASP.NET Core data protection stack to work with the ASP.NET 4.x <machineKey> element.
Microsoft.AspNet.Razor.ja
このパッケージには、ASP.NET Razor の 日本語 サテライト アセンブリが含まれています。
MicrosoftAjax
Microsoft AJAX Framework
Microsoft.AspNetCore.App.Runtime.linux-musl-arm
Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/dotnet). We happily accept issues and PRs.
Microsoft.AspNet.Hosting.Server.Abstractions
ASP.NET 5 Hosting server abstractions.
Microsoft.AspNet.Identity.Core.es
Este paquete contiene los ensamblados de español para las bibliotecas de ASP.NET Identity Core.
jQuery.Easing
A jQuery plugin from GSGD to give advanced easing options.
Microsoft.AspNetCore.Grpc.HttpApi
HTTP API for gRPC ASP.NET Core
Microsoft.AspNet.WebPages.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web Pages 3.
Microsoft.AspNetCore.App.Runtime.win-arm
Provides a default set of APIs for building an ASP.NET Core application. Contains assets used for self-contained deployments. This package is an internal implementation of the .NET Core SDK and is not meant to be used as a normal PackageReference. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/898c164a1f537a8210a26eaf388bdc92531f6b09
Microsoft.AspNet.SignalR.SystemWeb.es
Este paquete contiene los ensamblados satélite de español para ASP.NET SignalR SystemWeb.
Microsoft.AspNetCore.Diagnostics.Middleware
ASP.NET Core middleware for collecting high-quality telemetry.
Microsoft.AspNet.SessionState.SqlSessionStateProviderAsync
In .Net 4.6.2, asp.net enables developer plug in async version of SessionState module which is a good fit for the non-in-memory SessionState data store. This SessionState provider uses SQL Server as the data store and leverages async database operation to provide better scability.
Microsoft.AspNet.WebHooks.Custom
This package provides functionality for adding your own custom WebHook support to your ASP.NET project. The functionality enables users to register WebHooks using a simple pub/sub model, and for your code to send WebHooks to registered receivers with matching WebHook registrations.
Microsoft.AspNet.SignalR.SystemWeb.fr
Ce package inclut les assemblys satellites en français pour ASP.NET SignalR SystemWeb.
Microsoft.Dnx.Compilation.Abstractions
Abstractions for compilers used by the runtime.
Microsoft.AspNet.Razor.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Razor.
Microsoft.DotNet.Web.ItemTemplates
Web File Templates for Microsoft Template Engine. To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ItemTemplates::6.0.0-preview.7.21378.6'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/330c2397160929d6d3275ade03cee436265258e8
Microsoft.EntityFrameworkCore.Specification.Tests
Shared test suite for Entity Framework Core database providers.
Microsoft.AspNet.SignalR.SystemWeb.tr
Bu paket ASP.NET SignalR SystemWeb için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.Mvc.ja
このパッケージには、ASP.NET MVC の 日本語 サテライト アセンブリが含まれています。
Microsoft.AspNet.WebPages.ja
このパッケージには、ASP.NET Web Pages 3 の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.SignalR.SystemWeb.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET SignalR SystemWeb.
Microsoft.AspNet.SignalR.SystemWeb.pt-br
Este pacote contém os assemblies satélites em Português-BR para o ASP.NET SignalR SystemWeb.
Microsoft.AspNet.SignalR.SystemWeb.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET SignalR SystemWeb.
Microsoft.AspNet.SignalR.SystemWeb.ja
このパッケージには、ASP.NET SignalR SystemWeb の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.SignalR.SystemWeb.it
Il pacchetto contiene gli assembly satellite di ASP.NET SignalR SystemWeb per l'italiano.
Microsoft.AspNet.SignalR.SystemWeb.ko
이 패키지에는 ASP.NET SignalR SystemWeb용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.SignalR.SystemWeb.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET SignalR SystemWeb.
Microsoft.AspNet.SignalR.SystemWeb.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET SignalR SystemWeb.
Microsoft.AspNet.Identity.Core.fr
Ce package contient les assemblys satellites en français pour les bibliothèques ASP.NET Identity Core.
Microsoft.AspNetCore.Components.WebView.Wpf
Build WPF apps with Blazor and WebView2.
Microsoft.AspNet.Identity.Owin.es
Este paquete contiene los ensamblados satélite de español para las bibliotecas de ASP.NET Identity Owin.
Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices
A collection of services for ASP.NET application to incorporate Microsoft.AspNetCore.SystemWebAdapters.
Microsoft.Configuration.ConfigurationBuilders.Json
A basic key/value Configuration Builder for the .Net Framework that draws from a json file.
Microsoft.Azure.WebJobs.Logging
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Logging. For more information, please visit http://go.microsoft.com/fwlink/?LinkID=320971
Microsoft.Tye.Extensions.Configuration
Package Description
Microsoft.EntityFrameworkCore.Relational.Specification.Tests
Shared test suite for Entity Framework Core relational database providers.
Microsoft.dotnet-msidentity
This package is a dotnet global tool which registers new Azure AD or Azure AD B2C applications, and updates your code accordingly, or modifies/edits existing Azure AD or Azure AD B2C app registrations and updates the project. This tool automates the steps of going to the portal UI for app registration and also updates the corresponding code for that application. With this tool, you can develop and register an ASP.NET Core web app, web API, gRPC service or Azure Function protected with the Microsoft identity platform, which can call Microsoft Graph or downstream web APIs. For details see https://aka.ms/dotnet-msidentity. Works with ASP.NET Core 3.1 and .NET 5.0, 6.0 projects.
Microsoft.AspNet.WebHooks.Receivers.Custom
This package provides support for receiving custom WebHooks from ASP.NET WebHooks implementations.
Microsoft.AspNet.Web.Optimization.zh-Hans
此程序包包含适用于 ASP.NET Web Optimization 的简体中文附属程序集。
Microsoft.AspNet.WebApi.Core.ja
このパッケージには、ASP.NET Web API Core Libraries の 日本語 サテライト アセンブリが含まれています。
Microsoft.AspNet.WebApi.Client.ja
このパッケージには、ASP.NET Web API Client Libraries の 日本語 サテライト アセンブリが含まれています。
Microsoft.AspNet.WebApi.WebHost.ja
このパッケージには、ASP.NET Web API Web Host の 日本語 サテライト アセンブリが含まれています。
System.Buffers.Primitives
Slices of arrays and buffers
Microsoft.AspNet.Web.Optimization.fr
Ce package inclut les assemblys satellites en français pour ASP.NET Web Optimization.
System.Web.Providers.Core
Legacy package, System.Web.Providers.Core is now included in the 'Microsoft.AspNet.Providers.Core' package.
Microsoft.Owin.Security.MicrosoftAccount.es
Este paquete contiene los ensamblados satélite en español para Microsoft Owin Security Microsoft Account
Microsoft.AspNet.WebApi.Core.de
Dieses Paket enthält die deutschen Ressourcen für Microsoft ASP.NET Web API Core Libraries.
MicrosoftMvcAjax.Mvc5
Microsoft ASP.NET MVC helpers for AJAX validation and AJAX rendering. Includes MicrosoftMvcAjax[.debug].js and MicrosoftMvcValidation[.debug].js.
Microsoft.AspNet.WebApi.Client.de
Dieses Paket enthält die deutschen Ressourcen für Microsoft ASP.NET Web API Client Libraries.
Microsoft.AspNet.Identity.Owin.fr
Ce package contient les assemblys satellites en français pour les bibliothèques ASP.NET Identity Owin.
Microsoft.AspNet.WebApi.WebHost.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web API Web Host.
Microsoft.Extensions.Configuration.NewtonsoftJson
Newtonsoft JSON configuration provider implementation for Microsoft.Extensions.Configuration.
SqlServerCompact
Legacy package, SqlServerCompact is now included in the 'Microsoft.SqlServer.Compact' package.
jQuery.Validation.AdditionalMethods
Addtional methods for the jQuery Validation plug-in. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.AspNet.DataProtection
ASP.NET 5 logic to protect and unprotect data, similar to DPAPI.
Microsoft.AspNet.Routing
ASP.NET 5 middleware and abstractions for routing requests to application logic and for generating links.
Microsoft.AspNet.DataProtection.Abstractions
Contains the core IDataProtector and IDataProtectionProvider abstractions for ASP.NET 5 Data Protection.
Microsoft.AspNet.Mvc.Core
The core runtime components of ASP.NET MVC.
Microsoft.AspNet.Identity.Core.de
Dieses Paket enthält die deutschen Satellitenassemblys für die ASP.NET Identity Core-Bibliotheken.
Microsoft.AspNet.Web.Optimization.pt-br
Este pacote contém os assemblies satélite Português-BR para ASP.NET Web Optimization.
Microsoft.AspNet.Identity.Core.pt-br
Este pacote contém os assemblies satélite em português do Brasil para as Bibliotecas do ASP.NET Identity Core.
Microsoft.AspNet.Identity.Owin.ja
このパッケージには、ASP.NET Identity Owin ライブラリの日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.Razor.Runtime
Runtime components for rendering Razor pages.
Microsoft.AspNet.Identity.Core.ja
このパッケージには、ASP.NET Identity Core ライブラリの日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.Mvc.Razor.Host
Design time hosting infrastructure for the ASP.NET MVC Razor view engine.
Microsoft.AspNet.Mvc.Razor
The Razor view engine for ASP.NET MVC.
jQuery.Color
A jQuery plugin that adds the ability to do color animations to jQuery. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
Microsoft.Owin.Security.MicrosoftAccount.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Security Microsoft Account
System.Threading.Tasks.Channels
Provides synchronization data structures for passing data between producers and consumers.
System.Binary
Non-allocating ninary reader and writer
OwinHost
Provides a stand-alone executable (OwinHost.exe) which can be used to host an OWIN-based application.
Microsoft.AspNet.Authorization
ASP.NET 5 authorization classes.
Microsoft.AspNet.WebApi.Client.pt-br
Este pacote contém os assemblies satélite em português para as ASP.NET Web API Client Libraries.
AspNetWebApi
Legacy package, AspNetWebApi is now included in the 'Microsoft.AspNet.WebApi' package.
Microsoft.AspNet.WebApi.Core.pt-br
Este pacote contém os assemblies satélite em português para as ASP.NET Web API Core Libraries.
Microsoft.AspNet.WebApi.WebHost.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET Web API Web Host.
Microsoft.AspNet.Mvc.Abstractions
The core abstractions of ASP.NET MVC.
Microsoft.AspNet.Mvc.zh-Hant
此套件包含 ASP.NET MVC 的繁體中文附屬組件。
Microsoft.AspNet.Identity.Owin.de
Dieses Paket enthält die deutschen Satellitenassemblys für die ASP.NET Identity Owin-Bibliotheken.
Microsoft.DotNet.Web.ProjectTemplates.5.0
ASP.NET Core Web Template Pack for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ProjectTemplates.5.0::5.0.17'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/02c6de4ba6022025fcda7581415f310f8c73cdc3
Microsoft.AspNet.Razor.zh-Hant
此套件包含 ASP.NET Razor 的 繁體中文 附屬組件。
Microsoft.Owin.Security.MicrosoftAccount.ja
このパッケージには、Microsoft Owin Security Microsoft Account の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.WebPages.zh-Hant
此套件包含 ASP.NET Web Pages 3 的繁體中文附屬組件。
Microsoft.AspNet.Web.Optimization.ja
このパッケージには、ASP.NET Web Optimization の 日本語 サテライト アセンブリが含まれています。
Microsoft.AspNet.Identity.Core.ru
Этот пакет содержит русские вспомогательные сборки для библиотек ASP.NET Identity Core.
Microsoft.AspNet.EntityDataSource
This package contains the runtime assembly for ASP.NET EntityDataSource control for EntityFramework.
Microsoft.AspNet.Identity.Owin.pt-br
Este pacote contém os assemblies satélite em português do Brasil para as Bibliotecas do ASP.NET Identity Owin.
Microsoft.AspNet.OutputCache.OutputCacheModuleAsync
Async version OutputCache module
Microsoft.AspNet.PageExecutionInstrumentation.Interfaces
Abstractions for page instrumentation.
Microsoft.AspNet.Diagnostics.Abstractions
ASP.NET 5 diagnostics middleware abstractions.
Microsoft.AspNet.Identity.Core.it
Questo pacchetto contiene gli assembly satellite per l'italiano relativi alle librerie di ASP.NET Identity Core.
AjaxControlToolkit.HtmlEditor.Sanitizer
This package provides HTML sanitization (to prevent XSS attacks) for the AjaxControlToolkit HtmlEditor extender.
Microsoft.AspNet.WebPages.Administration
This package contains the runtime assemblies for ASP.NET Web Pages. ASP.NET Web Pages and the new Razor syntax provide a fast, terse, clean and lightweight way to combine server code with HTML to create dynamic web content.
Microsoft.AspNet.Identity.Owin.ru
Этот пакет содержит русские вспомогательные сборки для библиотек ASP.NET Identity Owin.
dotnet-user-secrets
Command line tool to manage user secrets for Microsoft.Extensions.Configuration. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/9e73c3382f4d9e6ba47afff6a1467ace945c77e7
Microsoft.AspNet.Identity.Core.pl
Ten pakiet zawiera zestawy towarzyszące bibliotek pakietu ASP.NET Identity Core następującego języka: Polski.
Microsoft.AspNet.Identity.Owin.it
Questo pacchetto contiene gli assembly satellite per l'italiano relativi alle librerie di ASP.NET Identity Owin.
Microsoft.AspNet.Identity.Owin.ko
이 패키지에는 ASP.NET Identity Owin 라이브러리용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebApi.Core.zh-Hant
此套件包含 ASP.NET Web API Core Libraries 的 繁體中文 附屬組件。
RaphaelJS
Raphaël is a small JavaScript library that should simplify your work with vector graphics on the web. If you want to create your own specific chart or image crop and rotate widget, for example, you can achieve it simply and easily with this library. Raphaël ['ræfeɪəl] uses the SVG W3C Recommendation and VML as a base for creating graphics. This means every graphical object you create is also a DOM object, so you can attach JavaScript event handlers or modify them later. Raphaël’s goal is to provide an adapter that will make drawing vector art compatible cross-browser and easy. Raphaël currently supports Firefox 3.0+, Safari 3.0+, Chrome 5.0+, Opera 9.5+ and Internet Explorer 6.0+.
Microsoft.AspNet.WebApi.HelpPage.VB
The ASP.NET Web API Help Page automatically generates help page content for the web APIs on your site. Visitors to your help page can use this content to learn how to call your web APIs. Everything generated by the help page is fully customizable using ASP.NET MVC and Razor. ASP.NET Web API Help Page is a great addition to any ASP.NET Web API project.
Microsoft.AspNet.Identity.Core.ko
이 패키지에는 ASP.NET Identity Core 라이브러리용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.Mvc.ApiExplorer
Contains API explorer functionality for ASP.NET MVC for discovering metadata such as the list of controllers and actions, and their URLs and allowed HTTP methods.
Microsoft.AspNet.Identity.Owin.tr
Bu paket, ASP.NET Identity Owin Kitaplıkları için Türkçe uydu derlemelerini içeriyor.
Microsoft.AspNet.WebApi.Client.zh-Hant
此套件包含 ASP.NET Web API Client Libraries 的 繁體中文 附屬組件。
Microsoft.AspNet.Identity.Owin.pl
Ten pakiet zawiera zestawy towarzyszące bibliotek pakietu ASP.NET Identity Owin następującego języka: Polski.
Microsoft.Azure.WebJobs.Extensions.DocumentDB
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Extensions.DocumentDB. For more information, please visit https://azure.microsoft.com/en-us/documentation/articles/websites-webjobs-resources
Microsoft.Dnx.Runtime.Abstractions
ASP.NET 5 interfaces to take advantage of capabilities exposed by the runtime.
Microsoft.AspNet.Identity.Core.tr
Bu paket, ASP.NET Identity Core Kitaplıkları için Türkçe uydu derlemelerini içeriyor.
Microsoft.AspNet.WebApi.WebHost.zh-Hant
此套件包含 ASP.NET Web API Web Host 的 繁體中文 附屬組件。
AspNetRazor.Core
Legacy package, AspNetRazor.Core is now included in the 'Microsoft.AspNet.Razor' package.
Microsoft.AspNet.Cryptography.KeyDerivation
ASP.NET 5 utilities for key derivation.
Microsoft.Owin.Security.MicrosoftAccount.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Security Microsoft Account.
Microsoft.AspNet.Mvc.DataAnnotations
Metadata and Validation using System.ComponentModel.DataAnnotations for the MVC runtime
Microsoft.AspNet.Antiforgery
An antiforgery system for ASP.NET designed to generate and validate tokens to prevent Cross-Site Request Forgery attacks.
Microsoft.AspNet.Identity.Owin.cs
Balíček obsahuje česká satelitní sestavení pro knihovny ASP.NET Identity Owin.
AspNetWebPages.Core
Legacy package, AspNetWebPages.Core is now included in the 'Microsoft.AspNet.WebPages' package.
Microsoft.Owin.es
Este paquete contiene los ensamblados satélite de español para Microsoft Owin
Microsoft.AspNet.Mvc.ViewFeatures
View Rendering features for the MVC runtime
Microsoft.Extensions.MemoryPool
Microsoft.Extensions.MemoryPool
Microsoft.AspNet.Mvc.Formatters.Json
JSON input and output for the MVC runtime
Microsoft.AspNet.Html.Abstractions
ASP.NET 5 HTML content interface.
dnx-clr-win-x86
Microsoft .NET Execution environment for Desktop CLR on Windows x86
Microsoft.AspNet.WebPages.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web Pages 3.
Microsoft.AspNet.Authentication
ASP.NET 5 common types used by the various authentication middleware.
Microsoft.AspNet.Localization
Middleware for automatically applying culture information to HTTP requests.
Microsoft.Dnx.Compilation.CSharp.Abstractions
Microsoft.Dnx.Compilation.CSharp.Abstractions
Microsoft.AspNet.Mvc.Cors
CORS features for the core MVC runtime
Microsoft.AspNet.Identity.Core.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Identity Core Libraries.
Microsoft.AspNet.Mvc.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET MVC.
Microsoft.AspNet.Mvc.Localization
Features that enable globalization & localization of MVC applications.
Microsoft.AspNet.Razor.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Razor.
Microsoft.Owin.Security.MicrosoftAccount.pt-br
Este pacote contém assemblies de satélite pt-br para conta da Microsoft Owin Security Microsoft Account
Microsoft.Owin.Security.MicrosoftAccount.ru
Эти пакеты содержат русские вспомогательные сборки для Microsoft Owin Security Microsoft Account
Microsoft.AspNet.Diagnostics
ASP.NET 5 Middleware for exception handling, exception display pages, and diagnostics information.
Microsoft.Owin.Security.MicrosoftAccount.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Security Microsoft Account per l'italiano
Microsoft.Owin.Security.MicrosoftAccount.ko
이 패키지에는 Microsoft Owin Security Microsoft Account용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.Web.Optimization.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web Optimization.
Microsoft.AspNet.WebHooks.Custom.Api
This package contains a set of ASP.NET Web API Controllers for managing your custom WebHooks filters and registrations through a REST-style interface.
Microsoft.AspNetCore.Components.WebView.WindowsForms
Build Windows Forms apps with Blazor and WebView2.
Microsoft.Dnx.Compilation.CSharp.Common
ASP.NET 5 Roslyn implementation code shared with libraries performing runtime compilation.
Microsoft.AspNet.WebHooks.Custom.Mvc
This package exposes helpers for managing and triggering your custom WebHooks from within ASP.NET MVC Controllers.
Microsoft.Owin.Security.MicrosoftAccount.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Security Microsoft Account
Microsoft.AspNet.Authentication.Cookies
ASP.NET middleware that enables an application to use cookie based authentication, similar to ASP.NET's forms authentication.
Microsoft.Owin.Security.MicrosoftAccount.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Security Microsoft Account.
Microsoft.Owin.Security.MicrosoftAccount.tr
Bu paket Microsoft Owin Security Microsoft Account için Türkçe uydu derlemelerini içerir
Microsoft.Extensions.Caching.SqlConfig.Tools
Command line tool to create tables and indexes in a Microsoft SQL Server database for distributed caching.
Microsoft.AspNet.Razor.Runtime.Precompilation
Supports tag helper resolution during precompilation.
Microsoft.AspNetCore.WebSockets.Server
ASP.NET 5 web socket middleware for use on top of opaque servers.
Microsoft.Owin.Security.Google.es
Este paquete contiene los ensamblados satélite en español para Microsoft Owin Security Google
Microsoft.Owin.Security.Facebook.es
Este paquete contiene los ensamblados satélite en español para Microsoft Owin Security Facebook
Microsoft.AspNetCore.WebSockets.Protocol
Managed web socket protocol parser.
Microsoft.Owin.Security.Twitter.es
Este paquete contiene los recursos en español para Microsoft Owin Security Twitter
dnx-coreclr-linux-x64
Microsoft .NET Execution environment for CoreCLR on Linux x64
Microsoft.AspNet.IISPlatformHandler
ASP.NET 5 components for working with the IIS HttpPlatformHandler module.
jQuery.Mobile.MVC
Helpers for jQuery Mobile in ASP.NET MVC 4
Microsoft.Owin.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin
Microsoft.AspNet.WebApi.Core.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API Core Libraries.
Microsoft.AspNetCore.ProtectedBrowserStorage
Provides services for storing data in the browser's localStorage and sessionStorage collections via JS interop. The stored data is protected using ASP.NET Core's Data Protection capabilities.
Microsoft.AspNetCore.AngularServices
Helpers for building Angular 2 applications on ASP.NET Core.
Microsoft.AspNet.WebApi.Client.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API Client Libraries.
Microsoft.Extensions.DependencyInjection.Specification.Tests
Suite of xUnit.net tests to check for container compatibility with Microsoft.Extensions.DependencyInjection.
Microsoft.AspNet.WebApi.WebHost.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API Web Host.
Microsoft.AspNet.Mvc.it
Il pacchetto contiene gli assembly satellite di ASP.NET MVC per l'italiano.
dotnet-sql-cache
Command line tool to create tables and indexes in a Microsoft SQL Server database for distributed caching. This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.Owin.StaticFiles.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Static Files.
Microsoft.AspNet.WebHooks.Custom.AzureStorage
This package provides support for persisting your custom WebHooks registrations in Microsoft Azure Table Storage.
Microsoft.Owin.zh-Hans
此程序包包含 Microsoft Owin 的简体中文附属程序集
Microsoft.AspNet.Mvc.TagHelpers
Contains a default set of Tag Helpers for building ASP.NET MVC applications.
Microsoft.AspNet.Identity
Core implementation for ASP.NET Identity.
Microsoft.DotNet.Web.Client.ItemTemplates
Web Client-Side File Templates for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Client.ItemTemplates::11.0.0-rc.1.26425.128'.
Microsoft.Owin.Security.zh-Hans
此程序包包含 Microsoft Owin Security 的简体中文附属程序集
jquery.mousewheel
Adds mouse wheel support for your application! Just call mousewheel to add the event and call unmousewheel to remove the event.
Microsoft.AspNet.Identity.Core.zh-Hans
此程序包包含 ASP.NET Identity Core 的简体中文附属程序集。
Microsoft.AspNet.DynamicData.EFProvider
This package contains the runtime assembly for ASP.NET DynamicData provider for EntityFramework.
Microsoft.AspNet.WebPages.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web Pages 3 per l'italiano.
Microsoft.Owin.Host.SystemWeb.zh-Hans
此程序包包含适用于 OWIN Web 应用程序的 ASP.NET 主机的简体中文附属程序集。
AspNetSprites-Core
The ASP.NET Sprite core works with the ASP.NET Sprites Web Forms control and Sprite Helper to decrease the amount of time required to request and display a page by performing optimizations on a page's images.
Microsoft.AspNet.Razor.it
Il pacchetto contiene gli assembly satellite di ASP.NET Razor per l'italiano.
Microsoft.Extensions.Configuration.FileProviderExtensions
Extension methods for using configuration with file providers.
dnx-mono
Microsoft .NET Execution environment for Mono
MvcDiagnostics
A simple ASP.NET page used to diagnose issues with an ASP.NET MVC installation. See http://bradwilson.typepad.com/blog/2010/03/diagnosing-aspnet-mvc-problems.html for more details.
Microsoft.AspNet.Identity.Samples
This package contains an ASP.NET MVC application which shows you how to use the features in ASP.NET Identity. Install this package in an empty ASP.NET project.
Microsoft.AspNet.Tooling.Razor
Microsoft.AspNet.Tooling.Razor
Microsoft.AspNet.FeatureModel
ASP.NET 5 HTTP feature infrastructure.
Microsoft.AspNet.WebHooks.Receivers.Generic
This package provides support for receiving generic WebHooks with no special validation logic or security requirements. This can for example be used to receive WebHooks from IFTTT's Maker Channel or a Zapier WebHooks Action.
Microsoft.Owin.Hosting.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Hosting.
Microsoft.AspNet.Web.Optimization.zh-Hant
這個套件包含適用於 ASP.NET Web Optimization 的 繁體中文 附屬組件。
Microsoft.Owin.Security.ja
このパッケージには、Microsoft Owin Security の日本語サテライト アセンブリが含まれています。
Microsoft.Azure.WebJobs.Extensions.Twilio
This package contains binding extensions for Twilio.
AspNetSprites-MvcAndRazorHelper
The ASP.NET Sprite Helper allows you to use sprites and image inlining in ASP.NET MVC 3 and ASP.NET Web Pages projects.
AjaxControlToolkit.StaticResources
This package contains files (scripts, styles, and images) for bundling (Microsoft Web Optimization).
System.Collections.Sequences
Non-allocating collections
Microsoft.AspNet.Merge
The ASP.NET Merge tool (Aspnet_merge.exe) enables you to combine and manage assemblies that are created by the ASP.NET Compilation (Aspnet_compiler.exe) tool.
Microsoft.Owin.ja
このパッケージには、Microsoft Owin の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.Server.WebListener
ASP.NET 5 self-host web server.
Microsoft.Owin.Security.MicrosoftAccount.zh-Hans
此程序包包含 Microsoft Owin Security Microsoft Account 的简体中文附属程序集
Microsoft.AspNet.Razor.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące platformy ASP.NET Razor.
Microsoft.AspNet.Identity.EntityFramework.zh-Hans
此程序包包含 ASP.NET Identity Entity Framework 库的简体中文附属程序集。
Microsoft.AspNet.Identity.Owin.zh-Hans
此程序包包含 ASP.NET Identity Owin 库的简体中文附属程序集。
Microsoft.DotNet.Web.ProjectTemplates.3.0
ASP.NET Core Web Template Pack for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ProjectTemplates.3.0::3.0.3'. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/bd1e14b7d16b798de8a874189c89afed755a266c
Microsoft.AspNet.WebHooks.Custom.SqlStorage
This package provides support for persisting your custom WebHooks registrations in a SQL database.
Microsoft.AspNet.WebApi.Core.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API Core Libraries per l'italiano.
Microsoft.Owin.Security.Google.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Security Google
Microsoft.Tye
Package Description
Microsoft.AspNet.WebApi.Client.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API Client Libraries per l'italiano.
Microsoft.DotNet.Web.ProjectTemplates.3.1
ASP.NET Core Web Template Pack for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ProjectTemplates.3.1::3.1.32'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/3eeb12e106b9e913c3a4dec1a7d16da7b74149eb
Microsoft.Net.WebSockets
Implementation of WebSocket abstract base class. Used by WebListener.
Microsoft.Owin.Hosting.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Hosting.
Microsoft.Owin.Hosting.ru
Эти пакеты содержат русские вспомогательные сборки для Microsoft Owin Hosting
Microsoft.AspNet.WebApi.WebHost.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API Web Host per l'italiano.
Microsoft.Owin.Hosting.ja
このパッケージには、Microsoft Owin Hosting の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Hosting.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Hosting
Microsoft.Owin.Hosting.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Hosting
Microsoft.Owin.Hosting.es
Este paquete contiene los ensamblados satélite en español de Microsoft Owin Hosting
Microsoft.Owin.Hosting.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin Hosting
Microsoft.Owin.Hosting.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin Hosting
Microsoft.Owin.Hosting.tr
Bu paket Microsoft Owin Hosting için Türkçe yardımcı derlemeleri içerir
Microsoft.Owin.Hosting.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Hosting per l'italiano
Microsoft.DotNet.Web.Spa.ProjectTemplates.3.0
Single Page Application templates for ASP.NET Core To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates.3.0::3.0.3'. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/bd1e14b7d16b798de8a874189c89afed755a266c
Microsoft.AspNet.Server.IIS
ASP.NET 5 server implementation for IIS and IIS Express.
Microsoft.Owin.Hosting.ko
이 패키지에는 Microsoft Owin Hosting용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Security.Google.zh-Hans
此程序包包含 Microsoft Owin Security Google 的简体中文附属程序集
Microsoft.Owin.Security.Twitter.zh-Hans
此程序包包含 Microsoft Owin Security Twitter 的简体中文附属程序集
Microsoft.Owin.Security.Facebook.zh-Hans
此程序包包含 Microsoft Owin Security Facebook 的简体中文附属程序集
Microsoft.NET.Sdk.Aspire.Manifest-9.0.100-preview.1.Msi.x64
.NET Aspire workload manifest
Microsoft.Owin.Security.Facebook.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Security Facebook
Microsoft.Owin.Security.Twitter.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Security Twitter
System.IO.Pipelines.Extensions
Stream pipeline adapters implementation
Microsoft.AspNet.Loader.IIS.Interop
ASP.NET 5 server implementation interop assemblies for IIS and IIS Express.
Microsoft.AspNet.SignalR.Client.tr
Bu paket ASP.NET SignalR Core için Türkçe uydu derlemelerini içerir.
Microsoft.AspNetCore.WebHooks.Receivers
ASP.NET Core WebHooks abstractions and infrastructure components for receivers. Contains constraints, filters, metadata, and the application models to apply them.
Microsoft.AspNet.WebApi.Owin.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web API Owin.
Microsoft.dotnet-httprepl
The HTTP Read-Eval-Print Loop (REPL) is a lightweight, cross-platform command-line tool that's supported everywhere .NET Core is supported and is used for making HTTP requests to test ASP.NET Core web APIs and view their results.
Microsoft.Owin.Security.Google.ja
このパッケージには、Microsoft Owin Security Google の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Security.Twitter.ja
このパッケージには、Microsoft Owin Security Twitter の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Security.Facebook.ja
このパッケージには、Microsoft Owin Security Facebook の日本語サテライト アセンブリが含まれています。
Microsoft.Dnx.TestHost
Test host for discovering and running unit tests at design time, such as in Visual Studio.
Microsoft.AspNet.Providers.Core.zh-Hans
此程序包包含 ASP.NET Universal Providers Core Libraries 的简体中文附属程序集。
Microsoft.EntityFrameworkCore.Relational.Design.Specification.Tests
Shared design-time test suite for Entity Framework Core relational database providers.
Microsoft.Azure.WebJobs.Script.Extensibility
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Script.Extensibility. For more information, please visit http://github.com/Azure/azure-webjobs-sdk-script
Microsoft.DotNet.Web.Spa.ProjectTemplates
Single Page Application templates for ASP.NET Core To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates::3.0.0-preview7.19365.7'. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/d27c0100bc8b9b93eb8102b097c20b40f7de9c49
Microsoft.AspNet.SignalR.Sample
A simple fake stock ticker sample for ASP.NET SignalR.
Microsoft.EntityFrameworkCore.Templates
Entity Framework Core templates for dotnet-new. Enables these commonly used templates: ef-templates
Microsoft.AspNet.Cors.Core
Microsoft.AspNet.Cors.Core
Microsoft.AspNetCore.SpaTemplates
Single Page Application templates for ASP.NET Core
Microsoft.Dnx.Testing.Abstractions
Abstractions for test runners to communicate to a tool, such as Visual Studio.
Microsoft.AspNet.Web.Optimization.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web Optimization.
Microsoft.AspNetCore.Identity.Specification.Tests
Shared test suite for Asp.Net Identity Core store implementations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/02c6de4ba6022025fcda7581415f310f8c73cdc3
Microsoft.DotNet.Web.Spa.ProjectTemplates.3.1
Single Page Application templates for ASP.NET Core To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates.3.1::3.1.32'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/3eeb12e106b9e913c3a4dec1a7d16da7b74149eb
Microsoft.AspNet.SignalR.Client.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET SignalR Core.
KRE-Mono
The .NET Runtime Environment for Mono
Microsoft.AspNet.WebApi.Owin.ja
このパッケージには、ASP.NET Web API Owin の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.SignalR.Client.it
Il pacchetto contiene gli assembly satellite di ASP.NET SignalR Core per l'italiano.
Microsoft.AspNet.SignalR.Client.es
Este paquete contiene los ensamblados satélite de español para ASP.NET SignalR Core.
Microsoft.AspNet.SignalR.Client.ja
このパッケージには、ASP.NET SignalR Core の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.SignalR.Client.fr
Ce package inclut les assemblys satellites en français pour ASP.NET SignalR Core.
Microsoft.AspNet.SignalR.Client.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET SignalR Core.
Microsoft.AspNet.SignalR.Client.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET SignalR Core.
Microsoft.AspNet.SignalR.Client.ko
이 패키지에는 ASP.NET SignalR Core용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNetCore.SignalR.Specification.Tests
Tests for users to verify their own implementations of SignalR types This package was built from the source code at https://github.com/dotnet/dotnet/tree/3551975be08744f0418857c5bed8ab1545c5dd47
Microsoft.AspNet.WebApi.Owin.fr
Ce package contient les assemblys satellites en français pour ASP.NET Web API Owin.
Microsoft.Crank.EventSources
Helper classes to register metrics with the Microsoft.Crank tools.
Microsoft.Owin.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin.
Microsoft.Owin.Security.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Security.
Microsoft.AspNet.Mvc.ko
이 패키지에는 ASP.NET MVC용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.Web.Optimization.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web Optimization per l'italiano.
Microsoft.AspNet.Identity.Core.zh-Hant
此套件包含 ASP.NET Identity Core 程式庫的 {繁體中文} 附屬組件。
Microsoft.AspNet.WebPages.ko
이 패키지에는 ASP.NET Web Pages 3용 한국어 위성 어셈블리가 포함됩니다.
System.Web.Providers.LocalDb
Legacy package, System.Web.Providers.LocalDb is now included in the 'Microsoft.AspNet.Providers.LocalDB' package.
AspNetWebApi.SelfHost
Legacy package, AspNetWebApi.SelfHost is now included in the 'Microsoft.AspNet.WebApi.SelfHost' package.
Microsoft.AspNet.Razor.ko
이 패키지에는 ASP.NET Razor용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.Identity.AspNetCoreCompat
A compatibility layer for sharing identity databases between Microsoft.AspNet.Identity.EntityFramework and Microsoft.AspNetCore.Identity.EntityFrameworkCore.
Microsoft.AspNet.Web.Helpers.Mvc
This package contains web helpers to easily add functionality to your site such as Captcha validation, Twitter profile and search boxes, Gravatars, Video, Bing search, site analytics or themes.
Microsoft.AspNet.Web.Optimization.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web Optimization.
Microsoft.AspNet.FileProviders
Implementation of ASP.NET 5 file provider abstractions.
Microsoft.AspNet.FileProviders.Interfaces
ASP.NET 5 file provider interfaces.
Microsoft.AspNet.SignalR.zh-Hans
这是 ASP.NET SignalR 简体中文附属程序集的元程序包。
Microsoft.Owin.Host.HttpListener.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin HttpListener.
Microsoft.Configuration.ConfigurationBuilders.KeyPerFile
A basic key/value Configuration Builder for the .Net Framework that draws single values from plain text files using the filename as the key.
Microsoft.AspNet.Identity.Owin.zh-Hant
此套件包含 ASP.NET Identity Owin 程式庫的 {繁體中文} 附屬組件。
Microsoft.AspNet.WebHooks.Receivers.Stripe
This package provides support for receiving WebHooks from Stripe. For information about Stripe WebHooks, see "https://stripe.com/docs/webhooks".
Microsoft.DotNet.Common.ProjectTemplates.2.0
Common File Templates for Microsoft Template Engine
Microsoft.AspNet.SignalR.es
Metapaquete para los ensamblados satélite en español para ASP.NET SignalR.
Microsoft.ScriptManager.MSAjax
This contents of this package has been moved to the Microsoft.AspNet.ScriptManager.MSAjax package.
Microsoft.AspNet.SignalR.Core.zh-Hans
此程序包包含适用于 ASP.NET SignalR Core 的简体中文附属程序集。
Microsoft.DotNet.Web.ProjectTemplates.2.1
ASP.NET Core Web Template Pack for Microsoft Template Engine
Microsoft.AspNet.Identity.EntityFramework.zh-Hant
此套件包含 ASP.NET Identity Entity Framework 程式庫的 {繁體中文} 附屬組件。
Microsoft.AspNet.SignalR.SqlServer.tr
Bu paket ASP.NET SignalR SqlServer için Türkçe uydu derlemelerini içerir.
Microsoft.Owin.StaticFiles.ja
このパッケージには、Microsoft Owin Static Files の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.StaticFiles.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Static Files
Microsoft.Owin.StaticFiles.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Static Files.
Microsoft.Owin.StaticFiles.es
Estos paquetes contienen los ensamblados satélite en español para Microsoft Owin Static Files
Microsoft.Owin.StaticFiles.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin Static Files
Microsoft.Owin.StaticFiles.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Static Files per l'italiano
Microsoft.Owin.StaticFiles.ru
Этот пакет содержит русские вспомогательные сборки для Microsoft Owin Static Files
Microsoft.AspNet.FriendlyUrls.Core.es
Este paquete incluye los ensamblados satélite en español para Microsoft ASP.NET Friendly URLs.
Microsoft.Owin.StaticFiles.tr
Bu paket, Microsoft Owin Static Files için Türkçe yardımcı düzenlemeleri içerir
Microsoft.Owin.StaticFiles.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Static Files
Microsoft.Owin.StaticFiles.ko
이 패키지에는 Microsoft Owin Static Files용 한국어 위성 어셈블리가 포함되어 있습니다.
Owin
OWIN IAppBuilder startup interface
Microsoft.AspNet.WebPages.WebData.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web Pages 3 Web Data.
Microsoft.AspNet.SignalR.fr
Il s’agit d’un méta-package pour les assemblys satellites en français pour ASP.NET SignalR.
Microsoft.Owin.Host.SystemWeb.zh-Hant
此套件包含 ASP.NET Host for OWIN Web Applications 的繁體中文附屬組件。
Microsoft.AspNet.WebApi.OData.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web API OData.
Microsoft.AspNet.Mvc.ModelBinding
The ASP.NET MVC model binding components for binding data from a request to an object model.
Microsoft.AspNet.OData.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API for OData v4.0 per l'italiano.
dotnet-dev-certs
Command line tool to generate certificates used in ASP.NET Core during development. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/9e73c3382f4d9e6ba47afff6a1467ace945c77e7
Microsoft.AspNet.Http.Core
ASP.NET 5 HTTP feature implementations.
Microsoft.AspNet.SignalR.SystemWeb.zh-Hans
此程序包包含适用于 ASP.NET SignalR SystemWeb 的简体中文附属程序集。
Microsoft.Owin.zh-Hant
此套件包含 Microsoft Owin 的 繁體中文 附屬組件
Microsoft.AspNet.Http.Interfaces
ASP.NET 5 HTTP feature interface definitions.
Microsoft.Owin.Security.zh-Hant
此套件包含 Microsoft Owin Security 的繁體中文附屬組件
Microsoft.AspNet.WebPages.Data.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web Pages 3 Data.
Microsoft.AspNet.SignalR.SqlServer.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET SignalR SqlServer.
Microsoft.Extensions.CodeGenerators.Mvc
Microsoft.Extensions.CodeGenerators.Mvc
Microsoft.Azure.Jobs.Core
Legacy package, Microsoft.Azure.Jobs.Core is now included in the 'Microsoft.Azure.WebJobs.Core' package.
Microsoft.AspNet.WebApi.WebHost.ko
이 패키지에는 ASP.NET Web API Web Host용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebApi.Core.ko
이 패키지에는 ASP.NET Web API Core Libraries용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.OData.tr
Bu paket OData v4.0 için ASP.NET Web API'sinin Türkçe uydu derlemelerini içerir.
Microsoft.Net.WebSocketAbstractions
WebSocket abstract base class.
Microsoft.AspNet.OData.ko
이 패키지에는 OData v4.0용 ASP.NET Web API에 대한 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.OData.ja
このパッケージには、ASP.NET Web API for OData v4.0 の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.Mvc.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące platformy ASP.NET MVC.
Microsoft.AspNet.OData.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web API for OData v4.0.
Microsoft.AspNet.OData.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API for OData v4.0.
Microsoft.AspNet.OData.fr
Ce package contient les assemblys satellites en français pour ASP.NET Web API pour OData v4.0.
Microsoft.AspNet.Providers.Core.es
Este paquete contiene los ensamblados satélite en español para las bibliotecas principales de ASP.NET Universal Providers.
Microsoft.Extensions.CodeGeneration.Templating
Microsoft.Extensions.CodeGeneration.Templating
Microsoft.Extensions.CodeGeneration.Core
Microsoft.Extensions.CodeGeneration.Core
Microsoft.Extensions.CodeGeneration
Microsoft.Extensions.CodeGeneration
Microsoft.Extensions.CodeGeneration.EntityFramework
Microsoft.Extensions.CodeGeneration.EntityFramework
Microsoft.AspNet.WebPages.OAuth.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web Pages OAuth.
Microsoft.AspNet.SignalR.Redis.tr
Bu paket ASP.NET SignalR Redis için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.WebApi.OData.zh-Hans
此程序包包含适用于 ASP.NET Web API OData 的简体中文附属程序集。
Microsoft.DotNet.Web.ProjectTemplates.2.2
ASP.NET Core Web Template Pack for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ProjectTemplates.2.2::2.2.8'.
Microsoft.AspNet.WebApi.Client.ko
이 패키지에는 ASP.NET Web API Client Libraries용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNetCore.Protocols.Abstractions
Core components of ASP.NET Core networking protocol stack.
Microsoft.AspNet.WebApi.Owin.zh-Hans
此程序包包含适用于 ASP.NET Web API Owin 的简体中文附属程序集。
Microsoft.Owin.Security.Google.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Security Google.
Microsoft.Owin.Security.Facebook.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Security Facebook.
Microsoft.AspNet.WebPages.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web Pages 3.
Microsoft.ScriptManager.WebForms
This contents of this package has been moved to the Microsoft.AspNet.ScriptManager.WebForms package.
Microsoft.Owin.Security.Twitter.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Security Twitter.
Microsoft.Owin.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin
Microsoft.AspNet.RequestContainer
ASP.NET 5 enables per-request scoping of services.
Microsoft.AspNet.OData.pt-br
Este pacote contém assemblies de satélite de Português do Brasil para a ASP.NET Web API do OData v4.0.
Microsoft.AspNetCore.Testing
Experimental package. Test fakes for integration testing
Microsoft.AspNet.Security.DataProtection
ASP.NET 5 logic to protect and unprotect data, similar to DPAPI.
Microsoft.Owin.Security.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin Security
Microsoft.DotNet.Web.ProjectTemplates.6.0
ASP.NET Core Web Template Pack for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ProjectTemplates.6.0::6.0.36'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/64ea4108e7dcf1ca575f8dd2028363b0b1ef6ebc
Microsoft.ScriptManager.jQuery.UI.Combined
This contents of this package has been moved to the AspNet.ScriptManager.jQuery.UI.Combined package.
Microsoft.Owin.Security.Google.zh-Hant
此套件包含 Microsoft Owin Security Google 的 繁體中文 附屬組件
Microsoft.Owin.Security.Facebook.zh-Hant
此套件包含 Microsoft Owin Security Facebook 的 繁體中文 附屬組件
Microsoft.Owin.Security.MicrosoftAccount.zh-Hant
此套件包含 Microsoft Owin Security Microsoft Account 的 繁體中文 附屬組件
Microsoft.Owin.Security.Twitter.zh-Hant
此套件包含 Microsoft Owin Security Twitter 的 繁體中文 附屬組件
Microsoft.AspNet.WebHooks.Receivers.Salesforce
This package provides support for receiving Salesforce SOAP-based Outbound Messages as a WebHook. For information about Salesforce WebHooks, see "https://go.microsoft.com/fwlink/?linkid=838587".
Microsoft.Owin.Security.ActiveDirectory.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin Security Active Directory
dotnet-watch
Command line tool to watch for source file changes during development and restart the dotnet command. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/9e73c3382f4d9e6ba47afff6a1467ace945c77e7
Microsoft.AspNet.Facebook
Description: This package contains everything you need to create a Facebook application using ASP.NET MVC, ASP.NET Web API, and v2.0 of the Facebook Graph API.
Microsoft.NET.Workload.Emscripten.net8.Manifest-9.0.100-preview.3
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net8.Manifest-9.0.100-preview.3
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.AspNet.Security
ASP.NET 5 common types used by the various authentication middleware.
Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100-preview.3
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-9.0.100-preview.3
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.Owin.Diagnostics.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Diagnostics
dnx-clr-win-x64
Microsoft .NET Execution environment for Desktop CLR on Windows x64
Microsoft.NET.Workload.Mono.ToolChain.net7.Manifest-9.0.100-preview.3
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net6.Manifest-9.0.100-preview.3
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net7.Manifest-9.0.100-preview.3
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net6.Manifest-9.0.100-preview.3
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.Owin.Security.ru
Эти пакеты содержат русские вспомогательные сборки для Microsoft Owin Security
Microsoft.AspNet.SignalR.SqlServer.ja
このパッケージには、ASP.NET SignalR SqlServer の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.ru
Этот пакет содержит русские вспомогательные сборки для Microsoft Owin
Microsoft.AspNet.Mvc.tr
Bu paket, ASP.NET MVC için Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.SignalR.SqlServer.ko
이 패키지에는 ASP.NET SignalR SqlServer용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.SignalR.SqlServer.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET SignalR SqlServer.
Microsoft.AspNet.SignalR.SqlServer.fr
Ce package inclut les assemblys satellites en français pour ASP.NET SignalR SqlServer.
Microsoft.AspNet.SignalR.SqlServer.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET SignalR SqlServer.
Microsoft.AspNet.SignalR.SqlServer.it
Il pacchetto contiene gli assembly satellite di ASP.NET SignalR SqlServer per l'italiano.
Microsoft.AspNet.SignalR.SqlServer.pt-br
Este pacote contém os assemblies satélites em Português-BR para o ASP.NET SignalR SqlServer.
Microsoft.AspNet.SignalR.SqlServer.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET SignalR SqlServer.
Microsoft.AspNet.SignalR.SqlServer.es
Este paquete contiene los ensamblados satélite de español para ASP.NET SignalR SqlServer.
Microsoft.AspNet.WebPages.WebData.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web Pages 3 Web Data.
Microsoft.AspNet.Mvc.Facebook
This package contains everything you need to create a Facebook application using ASP.NET MVC.
AspNetWebPagesCore
This package contains core runtime assemblies shared between ASP.NET MVC and ASP.NET Web Pages.
Microsoft.AspNet.WebPages.WebData.zh-Hans
此程序包包含 ASP.NET Web Pages 3 Web Data 的简体中文附属程序集。
Microsoft.Azure.Jobs
Legacy package, Microsoft.Azure.Jobs is now included in the 'Microsoft.Azure.WebJobs' package.
Microsoft.AspNet.Session
ASP.NET 5 session state middleware.
Microsoft.Owin.Diagnostics.de
Dieses Paket enthält die deutschen Satellitenassemblys for Microsoft Owin Diagnostics.
Microsoft.DotNet.Web.Spa.ProjectTemplates.2.1
Single Page Application templates for ASP.NET Core
Microsoft.AspNet.Authentication.OAuth
ASP.NET 5 middleware that enables an application to support any standard OAuth 2.0 authentication workflow.
Microsoft.AspNet.WebPages.Data.zh-Hans
此程序包包含 ASP.NET Web Pages 3 Data 的简体中文附属程序集。
Microsoft.Owin.Diagnostics.es
Este paquete contiene los ensamblados satélite en español para Microsoft Owin Diagnostics
Microsoft.AspNet.SignalR.ru
Это метапакет для русских вспомогательных сборок для ASP.NET SignalR.
Microsoft.AspNet.SignalR.de
Dies ist ein Metapaket für die deutschen Satellitenassemblys für ASP.NET SignalR.
Microsoft.Dnx.Runtime
ASP.NET 5 runtime infrastructure for loading NuGet packages and projects.
Microsoft.AspNet.WebPages.tr
Bu paket, ASP.NET Web Pages 3 için Türkçe yardımcı derlemeleri içerir.
Microsoft.Owin.Diagnostics.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Diagnostics.
Microsoft.Owin.Diagnostics.ja
このパッケージには、Microsoft Owin Diagnostics の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.SignalR.pt-br
Este é um pacote meta para os assemblies satélite Português-BR do ASP.NET SignalR
Microsoft.AspNet.WebPages.Data.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web Pages 3 Data.
Microsoft.AspNet.WebPages.OAuth.zh-Hans
此程序包包含 ASP.NET Web Pages OAuth 的简体中文附属程序集。
Microsoft.AspNet.SignalR.ServiceBus.tr
Bu paket ASP.NET SignalR ServiceBus için Türkçe uydu derlemelerini içerir.
Microsoft.Owin.Diagnostics.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Diagnostics per l'italiano
Microsoft.Owin.Diagnostics.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin Diagnostics
Microsoft.Owin.Diagnostics.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Diagnostics
Microsoft.Owin.Diagnostics.ru
Эти пакеты содержат русские вспомогательные сборки для Microsoft Owin Diagnostics
Microsoft.AspNet.WebApi.Owin.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web API Owin.
Microsoft.Owin.Diagnostics.ko
이 패키지에는 Microsoft Owin Diagnostics용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Diagnostics.tr
Bu paket Microsoft Owin Diagnostics için Türkçe yardımcı derlemelerini içerir
Microsoft.AspNet.WebApi.Tracing.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web API Tracing.
Microsoft.Owin.Security.Google.ru
Эти пакеты содержат русские вспомогательные сборки для Microsoft Owin Security Google
Microsoft.Dnx.Loader
ASP.NET 5 runtime infrastructure for assembly load contexts.
Microsoft.AspNet.SignalR.zh-Hant
這是 ASP.NET SignalR 繁體中文附屬組件的中繼套件。
Microsoft.AspNet.Razor.tr
Bu paket, ASP.NET Razor için Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.Authentication.Facebook
ASP.NET 5 middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.
Microsoft.Crank.Controller
Schedules jobs on the benchmarks agent.
Microsoft.AspNet.Authentication.Google
ASP.NET 5 contains middlewares to support Google's OpenId and OAuth 2.0 authentication workflows.
Microsoft.Owin.Security.Twitter.ru
Эти пакеты содержат русские вспомогательные сборки для Microsoft Owin Security Twitter
Microsoft.Owin.Host.HttpListener.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin HttpListener.
Microsoft.Owin.Host.HttpListener.ru
Эти пакеты содержат русские вспомогательные сборки для Microsoft Owin HttpListener
Microsoft.AITools.BinlogMcp
Package Description
Microsoft.AITools.BinlogMcp
Package Description
Microsoft.AspNet.WebApi.Tracing.zh-Hans
此程序包包含适用于 ASP.NET Web API Tracing 的简体中文附属程序集。
Microsoft.Owin.Host.HttpListener.tr
Bu paket Microsoft Owin HttpListener için Türkçe yardımcı derlemeleri içerir
Microsoft.AspNet.Web.Optimization.ko
이 패키지에는 ASP.NET Web Optimization에 대한 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Host.HttpListener.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin HttpListener
Microsoft.Owin.Host.HttpListener.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin HttpListener
Microsoft.Owin.Host.HttpListener.ko
이 패키지에는 Microsoft Owin HttpListener용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Host.HttpListener.ja
このパッケージには、Microsoft Owin HttpListener の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Host.HttpListener.es
Este paquete contiene los ensamblados satélite en español de Microsoft Owin HttpListener
Microsoft.Owin.Host.HttpListener.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin HttpListener per l'italiano
Microsoft.Owin.Security.Jwt.zh-Hant
此套件包含 Microsoft Owin Security Jwt 的 {繁體中文} 附屬組件
Microsoft.Owin.Host.HttpListener.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin HttpListener
Microsoft.AspNet.Providers.Core.fr
Ce package contient les assemblys satellites en français pour les bibliothèques principales de ASP.NET Universal Providers.
Microsoft.AspNet.FileProviders.Embedded
Implementation of ASP.NET 5 file provider abstractions for embedded resources.
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.WebSites
An installer shim to get "Roslyn" CodeDOM providers included in project-less "Web Site" builds. This package was built from the source at https://github.com/aspnet/RoslynCodeDomProvider/commit/6e07f00c343d804f2c7398eadfaeeeda23b44a68
Microsoft.AspNet.SessionState.CosmosDBSessionStateProviderAsync
In .Net 4.6.2, asp.net enables developer plug in async version of SessionState module which is a good fit for the non-in-memory SessionState data store. This SessionState provider uses CosmosDB as the data store and leverages async database operation to provide better scability.
Microsoft.Owin.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin per l'italiano
Microsoft.Owin.Security.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Security per l'italiano
Microsoft.NET.Workloads.10.0.100-preview.3
This package contains the workload set manifest for the 10.0.100-preview.3 version of the .NET SDK. This package is not intended for direct reference - instead it is an internal implementation detail of the 'dotnet workload' command. See https://learn.microsoft.com/dotnet/core/tools/dotnet-workload-sets for more details.
Microsoft.AspNet.Authentication.MicrosoftAccount
ASP.NET 5 middleware that enables an application to support the Microsoft Account authentication workflow.
dnx-coreclr-win-x64
Microsoft .NET Execution environment for CoreCLR on Windows x64
Microsoft.AspNet.SignalR.ja
これは、ASP.NET SignalR の日本語サテライト アセンブリのメタパッケージです。
Microsoft.AspNet.FriendlyUrls.Core.ja
このパッケージには、ASP.NET Friendly URLs の日本語のサテライト アセンブリが含まれています。
Microsoft.Owin.Security.Jwt.ru
Эти пакеты содержат вспомогательные сборки ({Language}) для Microsoft Owin Security Jwt
Microsoft.AspNet.Authentication.Twitter
ASP.NET 5 middleware that enables an application to support Twitter's OAuth 2.0 authentication workflow.
Microsoft.Owin.Security.ActiveDirectory.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Security Active Directory.
Microsoft.Owin.Security.ActiveDirectory.zh-Hant
此套件包含 Microsoft Owin Security Active Directory {繁體中文} 附屬組件
Upshot
Microsoft Upshot JS Library
gRaphael
gRaphaël's goal is to help you create stunning charts on your website. It is based on Raphaël graphics library. Check out the demos to see static and interactive charts in action. gRaphaël currently supports Firefox 3.0+, Safari 3.0+, Opera 9.5+ and Internet Explorer 6.0+.
Microsoft.AspNet.WebApi.OData.zh-Hant
此套件包含適用於 ASP.NET Web API OData 的 繁體中文附屬組件。
Microsoft.AspNet.WebApi.OData.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web API OData.
Microsoft.AspNet.WebApi.OData.fr
Ce package contient les assemblys satellites en français pour ASP.NET Web API OData.
Microsoft.AspNet.WebPages.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web Pages 3.
Microsoft.AspNet.SignalR.it
Meta pacchetto per gli assembly satellite di ASP.NET SignalR per l'italiano.
Microsoft.Owin.Security.Facebook.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Security Facebook per l'italiano
Microsoft.Owin.Security.Google.pt-br
Este pacote contém assemblies de satélite pt-br para Microsoft Owin Security Google
Microsoft.DotNet.Web.Spa.ProjectTemplates.5.0
Single Page Application templates for ASP.NET Core To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates.5.0::5.0.17'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/02c6de4ba6022025fcda7581415f310f8c73cdc3
AspNetCoreRuntime.6.0.x64
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.Owin.Security.Google.ko
이 패키지에는 Microsoft Owin Security Google용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebApi.Owin.zh-Hant
此套件包含適用於 ASP.NET Web API Owin 的繁體中文附屬組件。
Microsoft.AspNet.SignalR.Redis.ja
このパッケージには、ASP.NET SignalR Redis の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Security.Jwt.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Security Jwt.
Microsoft.AspNet.WebApi.OData.ja
このパッケージには、ASP.NET Web API OData の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.SignalR.Redis.ko
이 패키지에는 ASP.NET SignalR Redis용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebApi.Client.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web API Client Libraries.
Microsoft.AspNet.SignalR.Redis.pt-br
Este pacote contém os assemblies satélites em Português-BR para o ASP.NET SignalR Redis.
Microsoft.AspNet.WebPages.WebData.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web Pages 3 Web Data.
Microsoft.AspNet.SignalR.Redis.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET SignalR Redis.
Microsoft.AspNet.SignalR.Redis.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET SignalR Redis.
Microsoft.AspNet.SignalR.SystemWeb.zh-Hant
此套件包含 ASP.NET SignalR SystemWeb 的繁體中文附屬組件。
Microsoft.AspNet.WebApi.Core.tr
Bu paket, ASP.NET Web API Core Libraries Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.SignalR.Redis.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET SignalR Redis.
Microsoft.AspNet.WebApi.Owin.pt-br
Este pacote contém os assemblies satélite de Português (Brasil) do ASP.NET Web API Owin.
Microsoft.AspNet.SignalR.Redis.fr
Ce package inclut les assemblys satellites en français pour ASP.NET SignalR Redis.
Microsoft.AspNet.SignalR.Redis.it
Il pacchetto contiene gli assembly satellite di ASP.NET SignalR Redis per l'italiano.
Microsoft.AspNet.SignalR.Redis.es
Este paquete contiene los ensamblados satélite de español para ASP.NET SignalR Redis.
Microsoft.AspNet.SignalR.Redis.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET SignalR Redis.
Microsoft.AspNet.SignalR.ko
ASP.NET SignalR용 한국어 위성 어셈블리에 대한 메타패키지입니다.
Microsoft.Owin.Security.Twitter.ko
이 패키지에는 Microsoft Owin Security Twitter용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Security.Facebook.ko
이 패키지에는 Microsoft Owin Security Facebook용 한국어 위성 어셈블리가 포함되어 있습니다.
AspNetCoreRuntime.3.1.x64
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.Providers.Core.ja
このパッケージには、ASP.NET Universal Providers Core Libraries 用の日本語のサテライト アセンブリが含まれています。
Microsoft.ScriptManager.jQuery
This contents of this package has been moved to the AspNet.ScriptManager.jQuery package.
Microsoft.Owin.Security.Facebook.pt-br
Este pacote contém assemblies de satélite pt-br para Microsoft Owin Security Facebook
Microsoft.Owin.Security.Twitter.pt-br
Este pacote contém assemblies de satélite pt-br para Microsoft Owin Security Twitter
Microsoft.Owin.Security.ko
이 패키지에는 Microsoft Owin Security용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.ko
이 패키지에는 Microsoft Owin용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Security.Google.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Security Google per l'italiano
Microsoft.AspNet.WebApi.WebHost.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web API Web Host.
Microsoft.AspNetCore.ReactServices
Helpers for building React applications on ASP.NET Core.
Microsoft.Owin.Security.ActiveDirectory.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Security Active Directory
Microsoft.AspNet.WebApi.Core.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web API Core Libraries.
Microsoft.AspNet.Providers.Core.de
Dieses Paket enthält die deutschen Satellitenassemblys für die ASP.NET Universal Providers-Kernblibliotheken.
Microsoft.AspNetCore.ClientAssets
Package demonstrating how to integrate third party tools with Razor Class Libraries.
Microsoft.Owin.Security.ActiveDirectory.fr
Ce package contient les assemblies satellites en Français pour Microsoft Owin Security Active Directory
Microsoft.NET.Workloads.10.0.100-preview.3.Msi.x64
This package contains the workload set manifest for the 10.0.100-preview.3 version of the .NET SDK. This package is not intended for direct reference - instead it is an internal implementation detail of the 'dotnet workload' command. See https://learn.microsoft.com/dotnet/core/tools/dotnet-workload-sets for more details.
Microsoft.Owin.Security.ActiveDirectory.ru
Эти пакеты содержат русские вспомогательные сборки для Microsoft Owin Security Active Directory
Microsoft.AspNet.WebPages.Data.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web Pages 3 Data.
Microsoft.Owin.Security.ActiveDirectory.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Security Active Directory.
Microsoft.AspNet.WebApi.Tracing.fr
Ce package contient les assemblys satellites en français pour ASP.NET Web API Tracing.
Microsoft.Owin.Security.ActiveDirectory.ja
このパッケージには、Microsoft Owin Security Active Directory の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Security.Twitter.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Security Twitter per l'italiano
Facebook.Helper
The Facebook Helper for WebMatrix make it easy to add social widgets on your web pages using the minimum amount of code.
Microsoft.AspNet.WebApi.Client.tr
Bu paket, ASP.NET Web API Client Libraries için Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.Mvc.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET MVC.
Microsoft.AspNet.SignalR.pl
Jest to metapakiet zestawów satelickich dla języka polskiego dotyczących produktu ASP.NET SignalR.
Microsoft.AspNet.WebApi.WebHost.tr
Bu paket, ASP.NET Web API Web Host için Türkçe yardımcı derlemeleri içerir.
Microsoft.Owin.Security.ActiveDirectory.es
Este paquete contiene ensamblados satélite en español para Microsoft Owin Security Active Directory
Microsoft.Owin.Security.ActiveDirectory.tr
Bu paketler, Microsoft Owin Security Active Directory'ye yönelik Türkçe uydu derlemelerini içerir
Microsoft.AspNet.SignalR.cs
Toto je metabalíček pro česká satelitní sestavení pro ASP.NET SignalR.
AspNetCoreRuntime.8.0.x64
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.Owin.Security.ActiveDirectory.it
Questo pacchetto contiene gruppi satellite per Microsoft Owin Security Active Directory per l'italiano
Microsoft.AspNet.SignalR.tr
Bu, ASP.NET SignalR için Türkçe yardımcı derlemelerin meta paketidir.
Microsoft.DotNet.Web.Spa.ProjectTemplates.6.0
Single Page Application templates for ASP.NET Core To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates.6.0::6.0.36'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/800de95e1e05a831cb64f7dba88624bac42c7ede
Microsoft.AspNet.WebApi.Tracing.ja
このパッケージには、ASP.NET Web API Tracing の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.WebPages.WebData.tr
Bu paket, ASP.NET Web Pages 3 Web Data için Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.WebApi.Core.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API Core Libraries.
Microsoft.AspNet.WebHooks.Receivers.GitHub
This package provides support for receiving WebHooks from GitHub. For information about GitHub WebHooks, see "https://developer.github.com/webhooks/".
Microsoft.dotnet-scaffold
Scaffolding tool for .NET projects.
Microsoft.Owin.Security.ActiveDirectory.ko
이 패키지에는 Microsoft Owin Security Active Directory용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebHooks.Receivers.MailChimp
This package provides support for receiving WebHooks from MailChimp. For information about MailChimp WebHooks, see "https://apidocs.mailchimp.com/webhooks/".
Microsoft.AspNet.Razor.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Razor.
Microsoft.AspNet.WebApi.Cors.ko
이 패키지에는 ASP.NET Web API CORS용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebApi.OData.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API OData.
Twitter.Helper
ASP.NET Web Pages helpers for displaying Twitter widgets like Follow Me and Tweet Buttons.
Microsoft.AspNet.WebApi.Owin.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API Owin.
Microsoft.AspNet.SignalR.Core.zh-Hant
此套件包含 ASP.NET SignalR Core 的繁體中文附屬組件。
Microsoft.AspNet.WebPages.OAuth.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web Pages OAuth.
Microsoft.AspNet.WebApi.OData.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API OData.
Microsoft.AspNet.WebApi.Cors.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web API CORS.
Microsoft.AspNet.TestHost
ASP.NET 5 web server for writing and running tests.
dnx-coreclr-win-x86
Microsoft .NET Execution environment for CoreCLR on Windows x86
Microsoft.Azure.WebJobs.Extensions.WebHooks
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Extensions.WebHooks. For more information, please visit https://azure.microsoft.com/en-us/documentation/articles/websites-webjobs-resources
Microsoft.AspNet.WebApi.Cors.ja
このパッケージには、ASP.NET Web API CORS の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.WebApi.Tracing.zh-Hant
此套件包含適用於 ASP.NET Web API Tracing 繁體中文附屬組件。
Microsoft.AspNetCore.SignalR.Client.SourceGenerator
Package Description This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/cccab50fba1c7335fdb48a735246374b5ddd7e69
Microsoft.AspNet.WebApi.Client.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API Client Libraries.
Microsoft.AspNet.WebHooks.Receivers.VSTS
This package provides support for receiving WebHooks from Visual Studio Team Services. For information about Visual Studio Team Services WebHooks, see "https://www.visualstudio.com/en-us/get-started/integrate/service-hooks/webhooks-and-vso-vs".
Microsoft.Owin.Security.ActiveDirectory.zh-Hans
此程序包包含 Microsoft Owin Security Active Directory 的简体中文附属程序集
Microsoft.AspNet.Authentication.JwtBearer
ASP.NET 5 middleware that enables an application to receive a OpenIdConnect bearer token.
Microsoft.AspNet.WebPages.WebData.ja
このパッケージには、ASP.NET Web Pages 3 Web Data の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Security.Google.tr
Bu paket Microsoft Owin Security Google için Türkçe uydu derlemelerini içerir
Microsoft.AspNet.WebHooks.Receivers.Azure
This package provides support for receiving WebHooks from Kudu (Azure Web App Deployment) and Azure Alerts. For information about Kudu WebHooks, see "https://github.com/projectkudu/kudu/wiki/Web-hooks" and for Azure Alerts, see "https://azure.microsoft.com/en-us/documentation/articles/insights-webhooks-alerts/".
Microsoft.AspNet.Mvc.WebApiCompatShim
Provides compatibility in ASP.NET MVC with ASP.NET Web API 2 to simplify migration of existing Web API implementations.
Microsoft.AspNetCore.WebHooks.Receivers.GitHub
ASP.NET Core GitHub WebHooks infrastructure. Contains the GitHubWebHookAttribute class and AddGitHubWebHooks method.
Microsoft.AspNet.SignalR.Core.pt-br
Este pacote contém os assemblies satélites em Português-BR para o ASP.NET SignalR Core.
Microsoft.AspNet.WebPages.Data.ja
このパッケージには、ASP.NET Web Pages 3 Data の日本語サテライト アセンブリが含まれています。
Microsoft.AspNetCore.Components.ProtectedBrowserStorage
Provides functionality for storing protected data using the browser's localStorage and sessionStorage APIs. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ecdcc752d4639061c2c49727ee77a1039bbbca22
AspNetWebApi.Data
Description
Microsoft.AspNet.WebApi.Cors.zh-Hans
此程序包包含适用于 ASP.NET Web API CORS 的简体中文附属程序集。
Microsoft.AspNet.WebApi.OData.pt-br
Este pacote contém os assemblies satélite de Português do Brasil do ASP.NET Web API OData.
Microsoft.AspNet.WebApi.OData.tr
Bu paket ASP.NET Web API OData için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.WebApi.SelfHost.zh-Hans
此程序包包含 ASP.NET Web API Self Host 的简体中文附属程序集。
Microsoft.AspNet.WebApi.OData.ko
이 패키지에는 ASP.NET Web API OData용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.FriendlyUrls.Core.zh-Hans
此程序包包含 ASP.NET Friendly URLs 的简体中文附属程序集。
Microsoft.DotNet.MSIdentity
Package Description
SinglePageApplication
This package contains SPA scaffolding.
Microsoft.AspNet.WebApi.OData.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API OData per l'italiano.
Microsoft.AspNet.WebPages.Data.tr
Bu paket, ASP.NET Web Pages 3 Data için Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.WebApi.SelfHost.ja
このパッケージには、ASP.NET Web API Self Host の 日本語 サテライト アセンブリが含まれています。
Microsoft.AspNet.WebApi.Tracing.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web API Tracing.
Microsoft.AspNet.SignalR.i18n
This package depends on all the the i18n satellite assemblies for ASP.NET SignalR.
Microsoft.AspNet.SignalR.ServiceBus.es
Este paquete contiene los ensamblados satélite de español para ASP.NET SignalR ServiceBus.
Microsoft.AspNet.WebApi.WebHost.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API Web Host.
Microsoft.AspNet.WebApi.SelfHost.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET Web API Self Host.
Microsoft.Owin.Security.Twitter.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Security Twitter
Microsoft.AspNet.WebApi.SelfHost.zh-Hant
此套件包含 ASP.NET Web API Self Host 的 繁體中文 附屬組件。
Microsoft.AspNet.WebApi.SelfHost.tr
Bu paket, ASP.NET Web API Self Host için Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.WebPages.WebData.zh-Hant
此套件包含 ASP.NET Web Pages 3 Web Data 的繁體中文附屬組件。
Microsoft.WindowsAzure.Jobs
Legacy package, Microsoft.WindowsAzure.Jobs is now included in the 'Microsoft.Azure.Jobs.Core' package.
Microsoft.AspNet.WebHooks.Receivers.Slack
This package provides support for receiving WebHooks from Slack. For information about Slack WebHooks, see "https://api.slack.com/outgoing-webhooks".
Microsoft.AspNet.WebPages.OAuth.ja
このパッケージには、ASP.NET Web Pages OAuth の 日本語 サテライト アセンブリが含まれています。
Microsoft.AspNetCore.SystemWebAdapters.SessionState
A collection of services to provide session support for the System.Web adapters.
Microsoft.AspNet.Hosting.Interfaces
Microsoft.AspNet.Hosting.Interfaces
Microsoft.AspNet.WebApi.Cors.pt-br
Este pacote contém os assemblies satélite de Português (Brasil) do ASP.NET Web API CORS.
Microsoft.AspNet.SignalR.Client.zh-Hans
此程序包包含适用于 ASP.NET SignalR Core 的简体中文附属程序集。
Microsoft.AspNet.WebApi.Tracing.pt-br
Este pacote contém os assemblies satélite de Português (Brasil) do ASP.NET Web API Tracing.
AspNetCoreRuntime.3.1.x86
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.WebPages.WebData.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web Pages 3 Web Data.
Microsoft.AspNet.WebApi.Tracing.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API Tracing per l'italiano.
Microsoft.Dnx.Compilation
Microsoft.Dnx.Compilation
Microsoft.AspNet.WebPages.Data.zh-Hant
此套件包含 ASP.NET Web Pages 3 Data 的繁體中文附屬組件。
Microsoft.AspNet.SignalR.ServiceBus3.tr
Bu paket ASP.NET SignalR ServiceBus3 için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.WebApi.Cors.zh-Hant
此套件包含適用於 ASP.NET Web API CORS 的繁體中文附屬組件。
Microsoft.AspNet.WebPages.Data.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web Pages 3 Data.
Microsoft.AspNet.Providers.Core.zh-Hant
此套件包含 ASP.NET Universal Providers 核心程式庫的繁體中文附屬組件。
AspNetCoreRuntime.5.0.x64
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.WebPages.OAuth.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web Pages OAuth.
Microsoft.AspNet.WebApi.Owin.tr
Bu paket ASP.NET Web API Owin için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.WebApi.Owin.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API Owin per l'italiano.
Microsoft.AspNet.WebApi.Tracing.tr
Bu paket ASP.NET Web API Tracing için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.WebApi.SelfHost.ko
이 패키지에는 ASP.NET Web API Self Host용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Security.Google.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Security Google
Microsoft.AspNet.FriendlyUrls.Core.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Friendly URLs.
Microsoft.AspNet.PipelineCore
ASP.NET 5 HTTP feature implementations.
Microsoft.AspNet.SignalR.Core.ja
このパッケージには、ASP.NET SignalR Core の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.HttpFeature
ASP.NET 5 HTTP feature interface definitions.
Microsoft.AspNet.WebApi.OData.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące pakietu ASP.NET Web API OData.
Microsoft.AspNet.WebPages.WebData.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web Pages 3 Web Data per l'italiano.
Microsoft.AspNet.Authentication.OpenIdConnect
ASP.NET 5 middleware that enables an application to support the OpenID Connect authentication workflow.
Microsoft.AspNet.WebPages.Data.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web Pages 3 Data.
Microsoft.AspNet.WebApi.SelfHost.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web API Self Host.
Microsoft.AspNet.WebApi.SelfHost.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web API Self Host.
Microsoft.AspNet.WebPages.WebData.ko
이 패키지에는 ASP.NET Web Pages 3 Web Data용 한국어 위성 어셈블리가 포함됩니다.
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-9.0.100-preview.3.Msi.x64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.AspNet.WebApi.SelfHost.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web API Self Host.
Microsoft.AspNet.WebPages.OAuth.zh-Hant
此套件包含 ASP.NET Web Pages OAuth 的 繁體中文 附屬組件。
Microsoft.AspNet.WebApi.Cors.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web API CORS.
Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100-preview.3.Msi.x64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net6.Manifest-9.0.100-preview.3.Msi.x64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.AspNet.WebApi.Cors.fr
Ce package contient les assemblys satellites en français pour ASP.NET Web API CORS.
Microsoft.NET.Workload.Emscripten.net7.Manifest-9.0.100-preview.3.Msi.x64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.AspNet.WebApi.Owin.ko
이 패키지에는 ASP.NET Web API Owin용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.NET.Workload.Mono.ToolChain.net6.Manifest-9.0.100-preview.3.Msi.x64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net8.Manifest-9.0.100-preview.3.Msi.x64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net7.Manifest-9.0.100-preview.3.Msi.x64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net8.Manifest-9.0.100-preview.3.Msi.x64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.AspNet.WebApi.Tracing.ko
이 패키지에는 ASP.NET Web API Tracing용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebApi.SelfHost.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API Self Host.
Microsoft.AspNet.WebApi.SelfHost.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API Self Host.
Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic
Quic transport for the ASP.NET Core Kestrel cross-platform web server. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/02c6de4ba6022025fcda7581415f310f8c73cdc3
Microsoft.AspNet.WebApi.SelfHost.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web API Self Host.
Microsoft.AspNet.WebApi.Cors.tr
Bu paket ASP.NET Web API CORS için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.WebPages.OAuth.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web Pages OAuth.
Microsoft.AspNet.WebApi.Tracing.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API Tracing.
Microsoft.AspNet.WebApi.SelfHost.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API Self Host per l'italiano.
Microsoft.AspNet.DataProtection.Interfaces
Contains the core IDataProtector and IDataProtectionProvider interfaces for ASP.NET 5 Data Protection.
Microsoft.AspNet.SignalR.Core.it
Il pacchetto contiene gli assembly satellite di ASP.NET SignalR Core per l'italiano.
Microsoft.DotNet.Web.ItemTemplates.6.0
Web File Templates for Microsoft Template Engine. To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ItemTemplates.6.0::6.0.36'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/64ea4108e7dcf1ca575f8dd2028363b0b1ef6ebc
AspNetCoreRuntime.6.0.x86
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.FriendlyUrls.Core.fr
Ce package contient les assemblys satellites en français pour ASP.NET Friendly URLs.
Microsoft.AspNet.SignalR.Core.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET SignalR Core.
Microsoft.AspNet.WebPages.WebData.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET Web Pages 3 Web Data.
Microsoft.AspNet.WebPages.Data.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web Pages 3 Data per l'italiano.
Microsoft.AspNet.WebHooks.Receivers.Bitbucket
This package provides support for receiving WebHooks from Bitbucket. For information about Bitbucket WebHooks, see "https://confluence.atlassian.com/bitbucket/manage-webhooks-735643732.html".
Microsoft.AspNet.Cors.ja
このパッケージには、ASP.NET CORS の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.WebPages.WebData.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web Pages 3 Web Data.
Microsoft.AspNet.WebApi.Cors.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API CORS per l'italiano.
Microsoft.Owin.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin
Microsoft.AspNet.WebApi.Tracing.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API Tracing.
Microsoft.AspNet.WebPages.WebData.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web Pages 3 Web Data.
Microsoft.DotNet.Web.ProjectTemplates.7.0
ASP.NET Core Web Template Pack for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ProjectTemplates.7.0::7.0.20'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/d9ba962869d1b1c410ea476b02de2f8e27eec762
Microsoft.AspNet.WebPages.Data.ko
이 패키지에는 ASP.NET Web Pages 3 Data용 한국어 위성 어셈블리가 포함됩니다.
Microsoft.AspNet.WebPages.OAuth.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web Pages OAuth per l'italiano.
Microsoft.Owin.Security.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Security
Microsoft.Owin.Security.Jwt.es
Este paquete contiene los recursos en español para Microsoft Owin Security Jwt
Microsoft.EntityFrameworkCore.AspNet.Specification.Tests
Shared ASP.NET test suite for Entity Framework Core database providers.
Microsoft.Owin.Security.Facebook.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Security Facebook
Microsoft.AspNet.SignalR.ServiceBus.pt-br
Este pacote contém os assemblies satélites em Português-BR para o ASP.NET SignalR ServiceBus.
Microsoft.AspNet.WebApi.Tracing.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące pakietu ASP.NET Web API Tracing.
Microsoft.AspNet.WebHooks.Receivers.Trello
This package provides support for receiving WebHooks from Trello. For information about Trello WebHooks, see "https://trello.com/docs/gettingstarted/webhooks.html".
Microsoft.Owin.Security.Jwt.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Security Jwt.
Microsoft.AspNet.WebPages.OAuth.ko
이 패키지에는 ASP.NET Web Pages OAuth용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebApi.Cors.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API CORS.
Microsoft.Azure.Jobs.ServiceBus
Legacy package, Microsoft.Azure.Jobs.ServiceBus is now included in the 'Microsoft.Azure.WebJobs.ServiceBus' package.
Microsoft.AspNet.WebHooks.Receivers.Pusher
This package provides support for receiving WebHooks from Pusher. For information about Pusher WebHooks, see "https://pusher.com/docs/webhooks".
Microsoft.AspNet.WebHooks.Receivers.WordPress
This package provides support for receiving WebHooks from WordPress. For information about WordPress WebHooks, see "https://en.support.wordpress.com/webhooks/".
Microsoft.AspNet.SignalR.ServiceBus3.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET SignalR ServiceBus3.
Microsoft.AspNet.Diagnostics.Interfaces
ASP.NET 5 diagnostics middleware interfaces.
Microsoft.AspNet.SignalR.Core.ko
이 패키지에는 ASP.NET SignalR Core용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Security.Jwt.pt-br
Este pacote contém assemblies satélite em Português para o Microsoft Owin Security Jwt
Microsoft.AspNet.Cors.zh-Hans
此程序包包含适用于 ASP.NET CORS 的简体中文附属程序集。
Microsoft.Owin.Security.Jwt.fr
Este pacote contém assemblies satélite em Português do Brasil para o Microsoft Owin Security Jwt
Microsoft.AspNet.Cors.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET CORS.
Microsoft.AspNet.WebHooks.Receivers.Instagram
This package provides support for receiving WebHooks from Instagram. For information about Instagram WebHooks, see "https://www.instagram.com/developer/subscriptions/".
Microsoft.AspNet.WebHooks.Receivers.Dropbox
This package provides support for receiving WebHooks from Dropbox. For information about Dropbox WebHooks, see "https://www.dropbox.com/developers/webhooks/docs".
Microsoft.AspNet.WebPages.Data.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET Web Pages 3 Data.
Microsoft.Owin.Security.Jwt.ja
このパッケージには、Microsoft Owin Security Jwt の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.WebHooks.Receivers.DynamicsCRM
This package provides support for receiving WebHooks from Microsoft Dynamics CRM. For information about Microsoft Dynamics CRM WebHooks, see "http://go.microsoft.com/fwlink/?LinkId=722218".
Microsoft.AspNet.SignalR.ServiceBus3.ko
이 패키지에는 ASP.NET SignalR ServiceBus3용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Security.Google.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Security Google.
Microsoft.AspNet.WebApi.Cors.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące pakietu ASP.NET Web API CORS.
Microsoft.AspNet.Mvc.HeaderValueAbstractions
Temporary abstractions for working with header values in ASP.NET MVC. These abstractions will be replaced by core HTTP abstractions in ASP.NET in a future release.
AspNetCoreRuntime.5.0.x86
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.Azure.WebJobs.Extensions.NotificationHubs
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Extensions.NotificationHubs. For more information, please visit https://azure.microsoft.com/en-us/documentation/articles/websites-webjobs-resources
Microsoft.DotNet.Web.ProjectTemplates.8.0
ASP.NET Core Web Template Pack for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ProjectTemplates.8.0::8.0.31'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/5e392da7379de101db58a36123c38effeba3edef
Microsoft.AspNet.WebApi.Owin.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API Owin.
Microsoft.AspNet.WebApi.Owin.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące pakietu ASP.NET Web API Owin.
Microsoft.AspNet.WebPages.Data.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web Pages 3 Data.
Microsoft.AspNet.WebPages.OAuth.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET Web Pages OAuth.
Microsoft.AspNet.WebHooks.Receivers.Paypal
This package provides support for receiving WebHooks from Paypal using the Paypal .NET SDK, see "https://www.nuget.org/packages/PayPal". For information about Paypal WebHooks, see "https://developer.paypal.com/webapps/developer/docs/integration/direct/rest-webhooks-overview/".
Microsoft.AspNet.SignalR.ServiceBus3.es
Este paquete contiene los ensamblados satélite de español para ASP.NET SignalR ServiceBus3.
Microsoft.AspNet.WebPages.OAuth.tr
Bu paket, ASP.NET Web Pages OAuth için Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.Membership.OpenAuth.es
Este paquete contiene los ensamblados satélites en español para ASP.NET DotNetOpen Membership.
Microsoft.Owin.Security.Twitter.tr
Bu paket Microsoft Owin Security Twitter için Türkçe uydu derlemelerini içerir
Microsoft.Owin.Security.Jwt.tr
Bu pakette Microsoft Owin Security Jwt için Türkçe yardımcı derlemeler
Microsoft.AspNet.Cors.pt-br
Este pacote contém os assemblies satélite de Português (Brasil) do ASP.NET CORS.
Microsoft.AspNet.Mvc.Facebook.zh-Hant
此套件包含適用於 ASP.NET MVC Facebook 的 {語言} 附屬組件。
Microsoft.Owin.Security.Facebook.tr
Bu paket Microsoft Owin Security Facebook için Türkçe uydu derlemelerini içerir
Microsoft.Owin.Security.Jwt.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Security Jwt
Microsoft.Owin.Security.Jwt.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Security Jwt per l'italiano
Microsoft.Owin.Host.HttpListener.zh-Hans
此程序包包含 Microsoft Owin HttpListener 的简体中文附属程序集
Microsoft.AspNet.WebApi.Cors.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API CORS.
Microsoft.Owin.Security.Jwt.ko
이 패키지에는 Microsoft Owin Security Jwt용 한국어 위성 어셈블리가 포함되어 있습니다.
AspNetCoreRuntime.3.0.x64
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.Dnx.Compilation.CSharp
ASP.NET 5 Roslyn compiler implementation.
Microsoft.Owin.Security.Twitter.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Security Twitter.
Microsoft.Owin.Security.Facebook.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Security Facebook.
Microsoft.Azure.WebJobs.Extensions.ApiHub
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Extensions.ApiHub. For more information, please visit https://azure.microsoft.com/en-us/documentation/articles/websites-webjobs-resources
Microsoft.AspNet.WebPages.OAuth.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web Pages OAuth.
Microsoft.AspNet.WebPages.OAuth.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web Pages OAuth.
Microsoft.AspNet.FriendlyUrls.Core.pt-br
Este pacote contém os assemblies satélite do Português Brasileiro para ASP.NET Friendly URLs.
Microsoft.AspNet.WebSockets.Protocol
Managed web socket protocol parser.
Microsoft.AspNet.SignalR.ServiceBus3.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET SignalR ServiceBus3.
Microsoft.AspNet.Cors.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET CORS.
Microsoft.Owin.Hosting.zh-Hans
此程序包包含 Microsoft Owin Hosting 的简体中文附属程序集
AspNetCoreRuntime.3.0.x86
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Design
Build-time references required to enable Razor view compilation as part of building the application.
Microsoft.AspNet.Cors.zh-Hant
此套件包含適用於 ASP.NET CORS 的繁體中文附屬組件。
Microsoft.AspNet.SignalR.ServiceBus3.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET SignalR ServiceBus3.
Microsoft.AspNet.SignalR.ServiceBus3.pt-br
Este pacote contém os assemblies satélites em Português-BR para o ASP.NET SignalR ServiceBus3.
Microsoft.AspNet.Cors.es
Este paquete contiene los ensamblados satélites en español para ASP.NET CORS.
Microsoft.AspNet.Providers.SqlCE
ASP.NET Universal Providers add provider support in ASP.NET 4 for all editions of SQL Server 2005 and later and to SQL Azure. If you use these providers to develop your application, the application will be ready for cloud environments like Azure. Other than supporting additional storage options, the providers work like the existing SQL-based providers, so that you can easily switch an application to use cloud storage via SQL Azure.
Microsoft.AspNet.SignalR.ServiceBus3.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET SignalR ServiceBus3.
Microsoft.AspNet.SignalR.ServiceBus3.it
Il pacchetto contiene gli assembly satellite di ASP.NET SignalR ServiceBus3 per l'italiano.
Microsoft.Crank.AzureDevOpsWorker
Execute crank jobs added to an Azure Service Bus queue by Azure DevOps.
Microsoft.Owin.Security.Jwt.zh-Hans
此程序包包含 Microsoft Owin Security Jwt 的简体中文附属程序集
Microsoft.Owin.Security.tr
Bu paket Microsoft Owin Security için Türkçe yardımcı derlemeleri içerir
Microsoft.AspNet.Cors.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET CORS.
Microsoft.Owin.tr
Bu paket Microsoft Owin için Türkçe yardımcı derlemeleri içerir
Microsoft.AspNet.SignalR.ServiceBus3.fr
Ce package inclut les assemblys satellites en français pour ASP.NET SignalR ServiceBus3.
Microsoft.AspNet.SignalR.ServiceBus3.fr
Ce package inclut les assemblys satellites en français pour ASP.NET SignalR ServiceBus3.
Microsoft.AspNet.WebSockets.Server
ASP.NET 5 web socket middleware for use on top of opaque servers.
Microsoft.AspNet.SignalR.Core.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET SignalR Core.
Microsoft.AspNet.FileSystems.Interfaces
ASP.NET 5 File System interfaces.
Microsoft.AspNet.SignalR.ServiceBus.ko
이 패키지에는 ASP.NET SignalR ServiceBus용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.SignalR.ServiceBus.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET SignalR ServiceBus.
Microsoft.AspNet.Cors.it
Il pacchetto contiene gli assembly satellite di ASP.NET CORS per l'italiano.
Microsoft.AspNet.SignalR.ServiceBus.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET SignalR ServiceBus.
Microsoft.AspNet.Web.Optimization.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web Optimization.
Microsoft.AspNet.SignalR.ServiceBus.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET SignalR ServiceBus.
Microsoft.AspNet.Cors.ko
이 패키지에는 ASP.NET CORS용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.Cors.fr
Ce package contient les assemblys satellites en français pour ASP.NET CORS.
Microsoft.AspNet.SignalR.ServiceBus.it
Il pacchetto contiene gli assembly satellite di ASP.NET SignalR ServiceBus per l'italiano.
Microsoft.AspNet.SignalR.ServiceBus.ja
このパッケージには、ASP.NET SignalR ServiceBus の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.SignalR.ServiceBus.fr
Ce package inclut les assemblys satellites en français pour ASP.NET SignalR ServiceBus.
Microsoft.WindowsAzure.Jobs.Host
Legacy package, Microsoft.WindowsAzure.Jobs.Host is now included in the 'Microsoft.Azure.Jobs' package.
Microsoft.DotNet.Web.Spa.ProjectTemplates.7.0
Single Page Application templates for ASP.NET Core To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates.7.0::7.0.20'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/44db12e386471f65874703bdfcd71293db3d1243
Microsoft.AspNet.Cors.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące pakietu ASP.NET CORS.
Microsoft.AspNet.Cors.tr
Bu paket ASP.NET CORS için Türkçe uydu derlemelerini içerir.
Microsoft.Owin.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin.
Microsoft.AspNet.SignalR.ServiceBus.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET SignalR ServiceBus.
Microsoft.Owin.Security.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Security.
Microsoft.Owin.Hosting.zh-Hant
此套件包含 Microsoft Owin Hosting 的繁體中文附屬組件
AjaxGridScaffolder
A scaffolder has many similarities to the built-in "Controller ... using Entity Framework" scaffolder, but it provides pagination, reordering and inline editing of the content using Ajax.
Microsoft.Owin.Diagnostics.zh-Hans
此程序包包含 Microsoft Owin Diagnostics 的简体中文附属程序集
AspNetWebPages
Legacy package, AspNetWebPages is now included in the 'Microsoft.AspNet.WebPages.Administration' package.
Microsoft.AspNet.Security.Cookies
ASP.NET middleware that enables an application to use cookie based authentication, similar to ASP.NET's forms authentication.
Microsoft.AspNet.Providers.Core.ru
Этот пакет содержит русские вспомогательные сборки для базовых библиотек ASP.NET Universal Providers.
Microsoft.AspNet.SignalR.ServiceBus3.ja
このパッケージには、ASP.NET SignalR ServiceBus3 の日本語サテライト アセンブリが含まれています。
System.Web.Http.AspNetCore
Package Description
Microsoft.AspNet.SignalR.Server
Core server components for ASP.NET SignalR.
Microsoft.AspNet.OData.zh-Hant
此套件包含適用於 ASP.NET Web API for OData v4.0 的 繁體中文 附屬組件。
Microsoft.AspNet.OData.zh-Hans
此程序包包含适用于 ASP.NET Web API for OData v4.0 的简体中文附属程序集。
Microsoft.Owin.Diagnostics.zh-Hant
此套件包含 for Microsoft Owin Diagnostics 的繁體中文附屬組件
Microsoft.AspNet.SignalR.Redis.zh-Hans
此程序包包含适用于 ASP.NET SignalR Redis 的简体中文附属程序集。
Microsoft.DotNet.Web.ItemTemplates.8.0
Web File Templates for Microsoft Template Engine. To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ItemTemplates.8.0::8.0.31'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/5e392da7379de101db58a36123c38effeba3edef
Microsoft.Owin.Host.HttpListener.zh-Hant
此套件包含 Microsoft Owin HttpListener 的繁體中文附屬組件
AspNetCoreRuntime.7.0.x64
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.SignalR.SqlServer.zh-Hant
此套件包含 ASP.NET SignalR SqlServer 的繁體中文附屬組件。
Microsoft.AspNetCore.WebHooks.Receivers.Salesforce
ASP.NET Core Salesforce WebHooks infrastructure. Contains the SalesforceWebHookAttribute class and AddSalesforceWebHooks method.
Microsoft.AspNet.FriendlyUrls.Core.zh-Hant
此套件包含 ASP.NET Friendly URLs 的繁體中文附屬組件
Microsoft.AspNet.SignalR.Client.zh-Hant
此套件包含 ASP.NET SignalR Core 的繁體中文附屬組件。
dnx-coreclr-darwin-x64
Microsoft .NET Execution environment for CoreCLR on Darwin(OSX) x64
Microsoft.AspNet.SignalR.ServiceBus.zh-Hant
此套件包含 ASP.NET SignalR ServiceBus 的繁體中文附屬組件。
Microsoft.AspNet.SignalR.SqlServer.zh-Hans
此程序包包含适用于 ASP.NET SignalR SqlServer 的简体中文附属程序集。
Microsoft.AspNet.SignalR.Client.pt-br
Este pacote contém os assemblies satélite em Português-BR para o ASP.NET SignalR Core.
Microsoft.AspNet.SignalR.Redis.zh-Hant
此套件包含 ASP.NET SignalR Redis 的繁體中文附屬組件。
Microsoft.AspNet.SignalR.Client.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET SignalR Core.
Microsoft.DotNet.Web.ItemTemplates.7.0
Web File Templates for Microsoft Template Engine. To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ItemTemplates.7.0::7.0.20'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/d9ba962869d1b1c410ea476b02de2f8e27eec762
Microsoft.AspNet.SignalR.ServiceBus.zh-Hans
此程序包包含适用于 ASP.NET SignalR ServiceBus 的简体中文附属程序集。
Microsoft.AspNetCore.Components.WebAssembly.MultipartBundle
Sample package demonstrating how to customize the Blazor publish process. Using this package in production is not supported.
AspNetCoreRuntime.8.0.x86
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.Membership.OpenAuth.zh-Hans
此程序包包含适用于 ASP.NET DotNetOpen Membership 的 简体中文 附属程序集。
Microsoft.AspNetCore.Components.WebView.WebView2
WebView2 wrappers for BlazorWebView components on Windows.
Microsoft.Owin.StaticFiles.zh-Hans
此程序包包含 Microsoft Owin Static Files 的简体中文附属程序集
Microsoft.AspNet.SignalR.ServiceBus3.zh-Hant
此套件包含 ASP.NET SignalR ServiceBus3 的繁體中文附屬組件。
Microsoft.DotNet.Web.Spa.ProjectTemplates.2.2
Single Page Application templates for ASP.NET Core To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates.2.2::2.2.8'.
Microsoft.Azure.WebJobs.Extensions.MobileApps
This package contains binding extensions for Azure Mobile Apps.
Microsoft.AspNet.FriendlyUrls.Core.it
Il pacchetto contiene gli assembly satellite di Microsoft ASP.NET Friendly URLs per l'italiano.
System.Net.Utilities
Provides the System.Net.NetworkInformation.Ping class, which allows an application to determine whether a remote computer is accessible over the network. Commonly Used Types: System.Net.NetworkInformation.Ping System.Net.NetworkInformation.PingReply System.Net.NetworkInformation.IPStatus System.Net.NetworkInformation.PingException System.Net.NetworkInformation.PingOptions - 1548494
Microsoft.AspNet.Providers.Core.it
Il pacchetto contiene gli assembly satellite di ASP.NET Universal Providers Core Libraries per l'italiano.
Microsoft.Owin.Security.WindowsAzure
Middleware that enables an application to use Microsoft's Azure Active Directory service for authentication.
Microsoft.AspNet.SignalR.ServiceBus3.zh-Hans
此程序包包含适用于 ASP.NET SignalR ServiceBus3 的简体中文附属程序集。
Microsoft.Owin.StaticFiles.zh-Hant
此套件包含 Microsoft Owin Static Files 的繁體中文附屬組件
Microsoft.AspNet.Web.Optimization.tr
Bu paket, ASP.NET Web Optimization için Türkçe uydu derlemelerini içerir.
AspNetCoreRuntime.2.2.x64
This site extension installs Microsoft.AspNetCore.All, Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes. This package was built from the source at: https://github.com/aspnet/AzureIntegration/tree/494978973cbb43df739639203e765733888b49e3
Microsoft.DotNet.Web.ProjectTemplates.9.0
ASP.NET Core Web Template Pack for Microsoft Template Engine To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ProjectTemplates.9.0::9.0.20'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/4e6235b8f9af12335ecd58a0a06b8f4105af2de0
Microsoft.Net.WebSockets.Server
Implementation of WebSocket abstract base class. Used by WebListener.
Microsoft.AspNetCore.Identity.Service.Abstractions
ASP.NET Core common types defining the main abstractions for Identity Service.
Microsoft.AspNetCore.Identity.Service.Core
ASP.NET Core common types implementing the main abstractions for Identity Service.
Microsoft.AspNetCore.Identity.Service
ASP.NET Core Identity Service implementation based on Entity Framework.
Microsoft.AspNetCore.SignalR.MsgPack
Provides server-side support for the MsgPack protocol in ASP.NET Core SignalR
Microsoft.AspNet.Mvc.Facebook.ja
このパッケージには、ASP.NET MVC Facebook の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Host.IIS
OWIN host for Microsoft.AspNet.Loader.IIS. Minimum system requirements: Windows 7 or Windows Server 2008 R2, IIS 7.5 or IIS Express 7.5, and .NET 4.5.1. This is prerelease software and is provided without warranty or support.
Microsoft.Extensions.ApiDescription.Design
MSBuild tasks and targets for code generation
Microsoft.AspNet.Membership.OpenAuth.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET DotNetOpen Membership.
Microsoft.AspNetCore.Identity.Service.EntityFrameworkCore
ASP.NET Core Identity Service implementation based on ASP.NET Core Identity.
AspNetCoreRuntime.7.0.x86
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
AspNetSprites-WebFormsControl
The ASP.NET Sprite Web Forms control allows you to use sprites and image inlining in ASP.NET 4 Web Forms projects.
Microsoft.AspNet.Membership.OpenAuth.fr
Ce package inclut les assemblys satellites en français pour ASP.NET DotNetOpen Membership.
Microsoft.AspNet.Diagnostics.Elm
ASP.NET 5 Middleware to capture and display the request logs.
PayPal.Helper
The PayPal helper allows you to integrate PayPal payments within your WebMatrix website or e-commerce application. With a few lines of code you'll enable your Website customers to click on a payment buttons to pay for their purchases with their PayPal accounts.
System.Web.Providers.SqlCE
Legacy package, System.Web.Providers.SqlCE is now included in the 'Microsoft.AspNet.Providers.SqlCE' package.
Microsoft.DotNet.Web.ItemTemplates.9.0
Web File Templates for Microsoft Template Engine. To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.ItemTemplates.9.0::9.0.20'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/4e6235b8f9af12335ecd58a0a06b8f4105af2de0
Microsoft.AspNet.WebApi.SignalR
This package provides a convenient programming model for writing web APIs using ASP.NET Web API that send real-time updates to SignalR clients.
Microsoft.AspNet.Membership.OpenAuth.ja
このパッケージには、ASP.NET DotNetOpen Membership の 日本語 サテライト アセンブリが含まれています。
Microsoft.AspNet.SignalR.Messaging
Core messaging components for ASP.NET SignalR.
Microsoft.AspNet.WebSockets.Client
Client for communicating over web sockets.
Microsoft.AspNet.DataProtection.Extensions
Additional APIs for ASP.NET 5 data protection.
Microsoft.AspNet.Providers.Core.ko
이 패키지에는 ASP.NET Universal Providers 핵심 라이브러리용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Crank.PullRequestBot
Runs benchmarks out of GitHub pull-requests.
Microsoft.AspNet.Membership.OpenAuth.it
Il pacchetto contiene gli assembly satellite di ASP.NET DotNetOpen Membership per l'italiano.
Microsoft.AspNet.Mvc.Facebook.zh-Hans
此程序包包含适用于 ASP.NET MVC Facebook 的简体中文附属程序集。
Microsoft.AspNetCore.Identity.Service.Mvc
ASP.NET Core Identity Service integration for ASP.NET Core MVC.
Microsoft.AspNetCore.Identity.Service.IntegratedWebClient
ASP.NET Core Identity Service in process client.
Microsoft.AspNetCore.Diagnostics.Identity.Service
ASP.NET Core Identity Service Diagnostics Middleware.
Microsoft.AspNet.Mvc.Facebook.ko
이 패키지에는 ASP.NET MVC Facebook용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.Mvc.Facebook.pt-br
Este pacote contém os assemblies satélite de Português do Brasil do ASP.NET MVC Facebook.
Microsoft.AspNet.Mvc.Facebook.fr
Ce package contient les assemblys satellites en français pour ASP.NET MVC Facebook.
Microsoft.AspNet.Mvc.Facebook.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET MVC Facebook.
Microsoft.AspNet.Mvc.Facebook.it
Il pacchetto contiene gli assembly satellite di ASP.NET MVC Facebook per l'italiano.
Microsoft.AspNet.Mvc.Facebook.es
Este paquete contiene los ensamblados satélites en español para ASP.NET MVC Facebook.
Microsoft.AspNet.Mvc.Facebook.tr
Bu paket ASP.NET MVC Facebook için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.Mvc.Facebook.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET MVC Facebook.
Microsoft.AspNet.Mvc.Facebook.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET MVC Facebook.
Microsoft.AspNet.Mvc.Formatters.Xml
Contains DataContractSerializer and XmlSerializer based input and output formatters
Microsoft.AspNet.Mvc.Facebook.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące pakietu ASP.NET MVC Facebook.
Microsoft.AspNet.Authentication.OAuthBearer
ASP.NET 5 middleware that enables an application to receive a OAuth bearer token.
Microsoft.AspNetCore.WebHooks.Receivers.Slack
ASP.NET Core Slack WebHooks infrastructure. Contains the SlackWebHookAttribute class and AddSlackWebHooks method.
AspNetCoreRuntime.9.0.x64
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.Membership.OpenAuth.zh-Hant
這個套件包含適用於 ASP.NET DotNetOpen Membership 的繁體中文附屬組件。
jQuery.DataLink
The link API allows you to very quickly and easily link fields of a form to an object. Any changes to the form fields are automatically pushed onto the object, saving you from writing retrieval code. By default, changes to the object are also automatically pushed back onto the corresponding form field, saving you from writing even more code. Furthermore, converters lets you modify the format or type of the value as it flows between the two sides (for example, formatting a phone number, or parsing a string to a number).
Microsoft.AspNet.Membership.OpenAuth.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET DotNetOpen Membership.
Microsoft.AspNet.Membership.OpenAuth.ko
이 패키지에는 ASP.NET DotNetOpen Membership에 대한 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebHooks.Receivers.Zendesk
This package provides support for receiving WebHooks from Zendesk. For information about Zendesk WebHooks, see "https://developer.zendesk.com/embeddables/docs/ios/push_notifications_webhook".
AspNetCoreRuntime.9.0.x86
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.FriendlyUrls.Core.ko
이 패키지에는 ASP.NET Friendly URLs에 대한 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.Membership.OpenAuth.tr
Bu paket, ASP.NET DotNetOpen Membership için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.Membership.OpenAuth.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET DotNetOpen Membership.
AspNetCoreRuntime.2.2.x86
This site extension installs Microsoft.AspNetCore.All, Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes. This package was built from the source at: https://github.com/aspnet/AzureIntegration/tree/494978973cbb43df739639203e765733888b49e3
Microsoft.AspNet.Membership.OpenAuth.pt-br
Este pacote contém os assemblies satélite Português-BR para ASP.NET DotNetOpen Membership.
Microsoft.AspNet.WebPages.Administration.zh-Hans
此程序包包含 ASP.NET Web Pages 2 Administration 的 简体中文 附属程序集。
Microsoft.Dnx.Watcher
Microsoft.Dnx.Watcher
Microsoft.Dnx.Watcher.Core
Microsoft.Dnx.Watcher.Core
Microsoft.AspNet.Membership.OpenAuth.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET DotNetOpen Membership.
Microsoft.AspNet.WebPages.Administration.ja
このパッケージには、ASP.NET Web Pages 2 Administration の 日本語 サテライト アセンブリが含まれています。
Microsoft.AspNet.DataProtection.SystemWeb
A component to allow the ASP.NET 5 DataProtection stack to work with the ASP.NET 4.x <machineKey> element.
Microsoft.AspNet.WebPages.Administration.pt-br
Este pacote contém os assemblies satélite em português para o ASP.NET Web Pages 2 Administration.
Microsoft.AspNet.WebPages.Administration.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web Pages 2 Administration per l'italiano.
Microsoft.AspNet.WebPages.Administration.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft ASP.NET Web Pages 2 Administration.
Microsoft.AspNet.WebPages.Administration.tr
Bu paket, ASP.NET Web Pages 2 Administration için Türkçe yardımcı derlemeleri içerir.
Microsoft.AspNet.WebPages.Administration.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web Pages 2 Administration.
Microsoft.AspNet.WebPages.Administration.zh-Hant
此套件包含 ASP.NET Web Pages 2 Administration 的 繁體中文 附屬組件。
Microsoft.AspNet.WebPages.Administration.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web Pages 2 Administration.
Microsoft.AspNet.WebPages.Administration.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web Pages 2 Administration.
Microsoft.AspNet.WebPages.Administration.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Web Pages 2 Administration.
Microsoft.AspNet.WebPages.Administration.fr
Ce package inclut les assemblys satellites Français pour ASP.NET Web Pages 2 Administration.
Microsoft.AspNetCore.Components.WebAssembly.DebugProxy
Debug proxy for use when building Blazor applications. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/a4938d07a5127ffad8466ddf703a6b5b21f4b0c9
Microsoft.AspNet.WebHooks.Receivers.MyGet
This package provides support for receiving WebHooks from MyGet. For information about MyGet WebHooks, see "http://docs.myget.org/docs/reference/webhooks". Implement "MyGetWebHookHandlerBase" to work with strong-typed webhook payloads.
Microsoft.AspNet.Providers.Core.pt-br
Este pacote contém os assemblies satélite de Português-BR para as Bibliotecas Principais dos ASP.NET Universal Providers.
Microsoft.AspNet.WebPages.Administration.ko
이 패키지에는 ASP.NET Web Pages 2 Administration용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.Security.OAuth
ASP.NET 5 middleware that enables an application to support any standard OAuth 2.0 authentication workflow.
Calendar.Template
This is the ASP.NET Web Pages Calendar template from Microsoft that comes with WebMatrix.
Microsoft.AspNet.FriendlyUrls.Core.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Friendly URLs.
Microsoft.AspNetCore.WebHooks.Receivers.Stripe
ASP.NET Core Stripe WebHooks infrastructure. Contains the StripeWebHookAttribute class and AddStripeWebHooks method.
Microsoft.AspNet.Security.Google
ASP.NET 5 contains middlewares to support Google's OpenId and OAuth 2.0 authentication workflows.
Microsoft.AspNet.Security.Facebook
ASP.NET 5 middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.
Microsoft.Extensions.SecretManager
DNX tool to manage user secrets.
KRE-CLR-x86
The K Runtime Environment for Desktop CLR x86
Microsoft.AspNet.Security.Twitter
ASP.NET 5 middleware that enables an application to support Twitter's OAuth 2.0 authentication workflow.
Microsoft.AspNet.SignalR.Client.Cpp.v120.WinDesktop
C++ client for ASP.NET SignalR.
Microsoft.AspNet.Security.MicrosoftAccount
ASP.NET 5 middleware that enables an application to support the Microsoft Account authentication workflow.
Microsoft.AspNet.Scaffolding.EntityFramework.12.0
Microsoft.AspNet.Scaffolding.EntityFramework.12.0 contracts assembly for Visual Studio.
WebMatrix.Security
This package contains the helper library to enable OAuth and OpenID authentication for ASP.NET Web Pages websites.
Microsoft.Azure.WebJobs.Script
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Script. For more information, please visit http://github.com/Azure/azure-webjobs-sdk-script
Microsoft.AspNet.SignalR.Client.Cpp.v140.WinDesktop
C++ client for ASP.NET SignalR.
Microsoft.AspNet.Providers.Core.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Universal Providers Core Libraries.
Starter.Site.Template.VB2
This is the VB version of the original ASP.NET Web Pages Starter Site template from Microsoft, updated for Web Pages v2.
System.Text.Json.Formatter
Package Description
Microsoft.AspNetCore.WebHooks.Receivers.AzureAlert
ASP.NET Core Azure Alert WebHooks infrastructure. Contains the AzureAlertWebHookAttribute class and AddAzureAlertWebHooks method.
Microsoft.AspNetCore.Mvc.Razor.Precompilation.Design
Razor precompilation
Microsoft.AspNetCore.Mvc.Razor.Precompilation.Tools
Razor precompilation
TranslatorWidget
WebMatrix helper for Bing Translator Widget and API
Microsoft.dotnet-scaffold-aspire
Scaffolding tool for .NET Aspire scenarios
Microsoft.AspNetCore.WebHooks.Receivers.MailChimp
ASP.NET Core MailChimp WebHooks infrastructure. Contains the MailChimpWebHookAttribute class and AddMailChimpWebHooks method.
AspNetCoreRuntime.10.0.x64
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.Scaffolding.12.0
Microsoft.AspNet.Scaffolding.12.0 contracts assembly for Visual Studio.
Microsoft.AspNet.CookiePolicy
ASP.NET 5 cookie policy classes.
Photo.Gallery.Template.VB2
This is the VB version of the original ASP.NET Web Pages Photo Gallery template from Microsoft, updated for Web Pages v2.
Bakery.Template.VB2
This is the VB version of the original ASP.NET Web Pages Bakery template from Microsoft, updated for Web Pages v2.
Microsoft.dotnet-scaffold-aspnet
Scaffolding tool with specific components
Microsoft.AspNet.Scaffolding.Infrastructure
The infrastucture for supporting scaffold generators installed as NuGet packages.
Microsoft.AspNet.Security.DataProtection.Compatibility
A component to allow the ASP.NET 5 DataProtection stack to work with the ASP.NET 4.x <machineKey> element.
Microsoft.AspNet.Security.DataProtection.Azure
ASP.NET 5 blob storage repository for DataProtection.
Microsoft.AspNet.Providers.Core.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące bibliotek ASP.NET Universal Providers Core Libraries.
Microsoft.AspNet.Providers.Core.tr
Bu paket, ASP.NET Universal Providers Temel Kitaplıkları için Türkçe uydu derlemeleri içerir.
Microsoft.AspNetCore.WebHooks.Receivers.WordPress
ASP.NET Core WordPress WebHooks infrastructure. Contains the WordPressWebHookAttribute class and AddWordPressWebHooks method.
Wishlist.Template
This is the ASP.NET Web Pages Wishlist template from Microsoft.
Calendar.Template.VB2
This is the VB version of the original ASP.NET Web Pages Calendar template from Microsoft, updated for Web Pages v2.
Microsoft.AspNet.Mvc.Xml
Contains DataContractSerializer and XmlSerializer based input and output formatters
Microsoft.AspNetCore.Razor.LanguageServer.Common
Razor is a markup syntax for adding server-side logic to web pages. This package contains common assets that are used in the Razor language server and other assemblies.
Microsoft.AspNetCore.Razor.OmniSharpPlugin.StrongNamed
Razor is a markup syntax for adding server-side logic to web pages. This package exposes public shims from core Razor that are used in the OmniSharp plugin.
Microsoft.AspNet.Scaffolding.WebForms
ASP.NET Web Forms Scaffold Generator
Microsoft.AspNetCore.Razor.OmniSharpPlugin
Razor is a markup syntax for adding logic to pages. This package contains the Omnisharp Razor plugin that extracts Razor configuration information from projects.
KRE-CoreCLR-x86
The K Runtime Environment for CoreCLR x86
Microsoft.AspNet.FriendlyUrls.Core.tr
Microsoft ASP.NET Friendly URLs için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.WebApi.SignalR.es
Este paquete contiene los ensamblados satélites en español para ASP.NET Web API SignalR.
Microsoft.AspNet.WebApi.SignalR.zh-Hans
此程序包包含适用于 ASP.NET Web API SignalR 的简体中文附属程序集。
Microsoft.AspNet.WebApi.SignalR.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Web API SignalR.
Microsoft.AspNet.WebApi.SignalR.zh-Hant
此套件包含適用於 ASP.NET Web API SignalR 的繁體中文附屬組件。
Microsoft.AspNet.WebApi.SignalR.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Web API SignalR.
SecretManager
ASP.NET 5 tool to manage user secrets.
Microsoft.AspNet.HttpOverrides
XForward and Method override middlewares for ASP.NET
Microsoft.AspNet.WebApi.SignalR.ko
이 패키지에는 ASP.NET Web API SignalR용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.AspNet.WebApi.SignalR.fr
Ce package contient les assemblys satellites en français pour ASP.NET Web API SignalR.
Microsoft.AspNet.WebApi.SignalR.it
Il pacchetto contiene gli assembly satellite di ASP.NET Web API SignalR per l'italiano.
Microsoft.AspNetCore.AspNetCoreModule
ASP.NET Core Module
Microsoft.AspNet.WebApi.SignalR.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Web API SignalR.
Microsoft.AspNet.WebApi.SignalR.tr
Bu paket ASP.NET Web API SignalR için Türkçe uydu derlemelerini içerir.
Microsoft.AspNet.DynamicDataTemplates.CS
ASP.NET Dynamic Data field and entity templates which can be used to customize the display of entities in Web Forms applications using Dynamic Data.
Microsoft.AspNet.WebApi.SignalR.ja
このパッケージには、ASP.NET Web API SignalR の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.WebApi.SignalR.pt-br
Este pacote contém os assemblies satélite de Português do Brasil do ASP.NET Web API SignalR.
Microsoft.AspNet.WebApi.SignalR.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące pakietu ASP.NET Web API SignalR.
Microsoft.AspNetCore.WebHooks.Receivers.BitBucket
ASP.NET Core Bitbucket WebHooks infrastructure. Contains the BitbucketWebHookAttribute class and AddBitbucketWebHooks method.
Microsoft.AspNet.FriendlyUrls.ViewSwitcher
Adds a mobile master page and a view switcher user control to enable switching between mobile and desktop views using ASP.NET Friendly URLs. Note: This package contains content for C# Web Application Projects (WAPs) only.
Microsoft.AspNet.FriendlyUrls.Core.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu ASP.NET Friendly URLs.
Microsoft.AspNetCore.WebHooks.Receivers.Dropbox
ASP.NET Core Dropbox WebHooks infrastructure. Contains the DropboxWebHookAttribute class and AddDropboxWebHooks method.
Microsoft.AspNet.FriendlyUrls.Core.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Friendly URLs.
Microsoft.AspNet.Facebook.es
Este paquete contiene los ensamblados satélite en español para ASP.NET Facebook.
Microsoft.AspNet.Buffering
ASP.NET middleware for buffering response bodies.
Microsoft.AspNet.Facebook.tr
Bu paket ASP.NET Facebook için Türkçe uygu teçhizatı içerir.
Microsoft.AspNet.Facebook.cs
Balíček obsahuje česká satelitní sestavení pro ASP.NET Facebook.
rzls
Razor is a markup syntax for adding server-side logic to web pages. This package contains a Razor language server.
Microsoft.AspNet.Facebook.it
Il pacchetto contiene gli assembly satellite di ASP.NET Facebook per l'italiano.
Microsoft.AspNet.Facebook.ja
このパッケージには、ASP.NET Facebook の日本語サテライト アセンブリが含まれています。
Microsoft.AspNet.Proxy
Proxy Library
Microsoft.AspNet.Facebook.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu for ASP.NET Facebook.
Microsoft.AspNet.Facebook.fr
Ce package contient les assemblys satellites en français pour ASP.NET Facebook.
Microsoft.AspNet.Facebook.de
Dieses Paket enthält die deutschen Satellitenassemblys für ASP.NET Facebook.
Microsoft.AspNet.Facebook.ru
Этот пакет содержит русские вспомогательные сборки для ASP.NET Facebook.
Microsoft.AspNet.Facebook.ko
이 패키지에는 ASP.NET Facebook용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.NET.Sdk.Aspire.Manifest-9.0.100-preview.1.Msi.arm64
.NET Aspire workload manifest
AspNetCoreRuntime.10.0.x86
This site extension installs Microsoft.AspNetCore.App and Microsoft.NetCore.App shared runtimes.
Microsoft.AspNet.Facebook.zh-Hant
此套件包含 ASP.NET Facebook 的繁體中文附屬組件。
Microsoft.AspNet.Facebook.zh-Hans
此程序包包含适用于 ASP.NET Facebook 的简体中文附属程序集。
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic
Quic transport for the ASP.NET Core Kestrel cross-platform web server. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/71dd6b0c87d7619668a40876d084d93db57eab41
EntityFramework.Core.FunctionalTests
Reusable EntityFramework.Core functional tests for provider writers.
Microsoft.AspNet.DataProtection.Shared
ASP.NET 5 Data Protection shared code.
Microsoft.AspNetCore.WebHooks.Receivers.DynamicsCRM
ASP.NET Core Dynamics CRM WebHooks infrastructure. Contains the DynamicsCRMWebHookAttribute class and AddDynamicsCRMWebHooks method.
Microsoft.AspNetCore.NodeServices.Sockets
Socket-based RPC for Microsoft.AspNetCore.NodeServices
Microsoft.DotNet.Web.Spa.ProjectTemplates.8.0
Single Page Application templates for ASP.NET Core To install the templates in this package, run 'dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates.8.0::8.0.0-preview.6.23329.11'. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/d60cf22dc709aae6e651fd490a78e4b5f60a5168
Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider
Async version SQL OutputCache Provider
Microsoft.NET.Sdk.Aspire.Manifest-9.0.100-preview.1.Msi.x86
.NET Aspire workload manifest
dotnet-httprepl
Command line tool for making HTTP calls and viewing their results.
EntityFramework.Relational.FunctionalTests
Reusable EntityFramework.Relational functional tests for provider writers.
EntityFramework.Relational.Design.FunctionalTests
Reusable EntityFramework.Relational.Design functional tests for provider writers.
Microsoft.AspNetCore.WebHooks.Receivers.Pusher
ASP.NET Core Pusher WebHooks infrastructure. Contains the PusherWebHookAttribute class and AddPusherWebHooks method.
Microsoft.AspNetCore.WebHooks.Receivers.Trello
ASP.NET Core Trello WebHooks infrastructure. Contains the TrelloWebHookAttribute class and AddTrelloWebHooks method.
Microsoft.Azure.WebJobs.Script.WebHost
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Script.WebHost. For more information, please visit http://github.com/Azure/azure-webjobs-sdk-script
Microsoft.AspNet.OutputCache.CosmosDBTableAsyncOutputCacheProvider
In .Net 4.6.2, asp.net enables developer plug in async version of OutputCache module which is a good fit for the non-in-memory OutputCache data store. This OutputCache provider can use both CosmosDB(table model) and Azure storage table as the data store and leverages async operation to provide better scability.
Microsoft.Extensions.Caching.SqlConfig
Contains commands for creating table and indexes in Microsoft SQL Server database to be used for ASP.NET 5 distributed caching.
Microsoft.AspNetCore.WebHooks.Receivers.Kudu
ASP.NET Core Kudu WebHooks infrastructure. Contains the KuduWebHookAttribute class and AddKuduWebHooks method.
Microsoft.NET.Sdk.BlazorWebAssembly.AOT
SDK manifest for Blazor WebAssembly AOT. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/5a007deadbb2636caff4656333cafc818b6b2ef6
Microsoft.Dnx.DesignTimeHost.Abstractions
ASP.NET 5 interfaces to take advantage of capabilities exposed by the design time host.
KRE-CLR-amd64
The K Runtime Environment for Desktop CLR amd64
Microsoft.AspNetCore.ApplicationInsightsLightup
Microsoft.AspNetCore.ApplicationInsightsLightup
Microsoft.AspNet.SignalR.Client.Cpp.v140.UWP
C++ client for ASP.NET SignalR.
KRE-CoreCLR-amd64
The K Runtime Environment for CoreCLR amd64
Microsoft.AspNet.Facebook.pt-br
Este pacote contém os assemblies satélite de Português do Brasil para o ASP.NET Facebook.
System.Binary.Base64
Non-allocating Base64 encoder and decoded
Aspire.Hosting.IncrementalMigration
Aspire hosting support for incremental migration with Microsoft.AspNetCore.SystemWebAdapters.
Microsoft.Owin.Security.Cookies.Interop
A compatibility layer for sharing authentication tickets between Microsoft.Owin.Security.Cookies and Microsoft.AspNet.Authentication.Cookies.
Aspire.Microsoft.AspNetCore.SystemWebAdapters
Aspire integration for Microsoft.AspNetCore.SystemWebAdapters to support incremental migration scenarios.
Microsoft.AspNetCore.RequestThrottling
ASP.NET Core middleware for queuing incoming HTTP requests, to avoid threadpool starvation. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/d27c0100bc8b9b93eb8102b097c20b40f7de9c49
Microsoft.AspNetCore.SystemWebAdapters.Owin
OWIN integration support for Microsoft.AspNetCore.SystemWebAdapters.
RazorSyntaxGenerator
Generates Razor syntax nodes from xml. For internal use only. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/a4938d07a5127ffad8466ddf703a6b5b21f4b0c9
Microsoft.Owin.Security.WindowsAzure.tr
Bu paket Microsoft Owin Security Windows Azure için Türkçe yardımcı derlemeleri içerir
Microsoft.Owin.Security.WindowsAzure.ko
이 패키지에는 Microsoft Owin Security Windows Azure용 한국어 위성 어셈블리가 포함되어 있습니다.
Microsoft.Owin.Security.WindowsAzure.ja
このパッケージには、Microsoft Owin Security Windows Azure の日本語サテライト アセンブリが含まれています。
Microsoft.Owin.Security.WindowsAzure.fr
Ce package contient les assemblys satellites en français pour Microsoft Owin Security Windows Azure
Microsoft.Owin.Security.WindowsAzure.pt-br
Este pacote contém os assemblies satélite pt-br do Microsoft Owin Security Windows Azure
Microsoft.Owin.Security.WindowsAzure.de
Dieses Paket enthält die deutschen Satellitenassemblys für Microsoft Owin Security Windows Azure.
Microsoft.Owin.Security.WindowsAzure.zh-Hans
此程序包包含 Microsoft Owin Security Windows Azure 的简体中文附属程序集
Microsoft.Owin.Security.WindowsAzure.zh-Hant
此套件包含 Microsoft Owin Security Windows Azure 的 繁體中文 附屬組件
Microsoft.Owin.Security.WindowsAzure.it
Il pacchetto contiene gli assembly satellite di Microsoft Owin Security Windows Azure per l'italiano
Microsoft.Owin.Security.WindowsAzure.es
Este paquete contiene los ensamblados satélite de español para Microsoft Owin Security Windows Azure
Microsoft.Owin.Security.WindowsAzure.pl
Ten pakiet zawiera zestawy satelickie dla języka polskiego dotyczące produktu Microsoft Owin Security Windows Azure
Microsoft.Owin.Security.WindowsAzure.cs
Tento balíček obsahuje česká satelitní sestavení pro Microsoft Owin Security Windows Azure.
Microsoft.Owin.Security.WindowsAzure.ru
Этот пакет содержит русские вспомогательные сборки для Microsoft Owin Security Windows Azure
dotnet-install-blazoraot
dotnet tool for acquiring Blazor AOT SDK. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/5a007deadbb2636caff4656333cafc818b6b2ef6
Microsoft.NET.Workloads.10.0.100-preview.3.Msi.arm64
This package contains the workload set manifest for the 10.0.100-preview.3 version of the .NET SDK. This package is not intended for direct reference - instead it is an internal implementation detail of the 'dotnet workload' command. See https://learn.microsoft.com/dotnet/core/tools/dotnet-workload-sets for more details.
ResultsOfTGenerator
Package Description This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ab1f1c636afa3a6607f2d67bc387b586596d1d38
Microsoft.NET.Workload.Mono.ToolChain.net7.Manifest-9.0.100-preview.3.Msi.arm64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net8.Manifest-9.0.100-preview.3.Msi.arm64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net6.Manifest-9.0.100-preview.3.Msi.arm64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-9.0.100-preview.3.Msi.arm64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net6.Manifest-9.0.100-preview.3.Msi.arm64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net7.Manifest-9.0.100-preview.3.Msi.arm64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net8.Manifest-9.0.100-preview.3.Msi.arm64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100-preview.3.Msi.arm64
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-9.0.100-preview.3.Msi.x86
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net7.Manifest-9.0.100-preview.3.Msi.x86
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net6.Manifest-9.0.100-preview.3.Msi.x86
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Mono.ToolChain.net8.Manifest-9.0.100-preview.3.Msi.x86
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net8.Manifest-9.0.100-preview.3.Msi.x86
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100-preview.3.Msi.x86
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net6.Manifest-9.0.100-preview.3.Msi.x86
Internal toolchain package not meant for direct consumption. Please do not reference directly.
Microsoft.NET.Workload.Emscripten.net7.Manifest-9.0.100-preview.3.Msi.x86
Internal toolchain package not meant for direct consumption. Please do not reference directly.
jQuery.Templates
jQuery templates contain markup with binding expressions. Templates are applied to data objects or arrays, and rendered into the HTML DOM.