|
1 | 1 | ASP.NET Core provides the following benefits: |
2 | 2 |
|
3 | | -* A unified story for building web UI and web APIs. |
| 3 | +:::moniker range=">= aspnetcore-6.0" |
| 4 | + |
| 5 | +<!-- AUTHOR NOTE: >=6.0 content includes Blazor and Minimal APIs --> |
| 6 | + |
| 7 | +* A unified story for building web apps, web APIs, Azure IoT (Internet of Things) apps, and mobile backends. |
| 8 | +* Architected for testability. |
| 9 | +* [Blazor](xref:blazor/index) lets you create rich interactive client-side UIs using [.NET](/dotnet/standard/tour)/[C#](/dotnet/csharp/) with wide browser support based on HTML/JavaScript, including mobile browsers. You can also build hybrid desktop and mobile apps with .NET and Blazor. |
| 10 | +* [Minimal APIs](xref:fundamentals/minimal-apis) are a simplified approach for building fast web APIs with minimal code and configuration by fluently declaring API routes and actions. |
| 11 | +* Supports [Razor Pages](xref:razor-pages/index) and [Model-View-Controller (MVC)](xref:mvc/overview) app development. |
| 12 | +* Ability to develop and run on Windows, macOS, and Linux. |
| 13 | +* Open-source and [community-focused](https://live.asp.net/). |
| 14 | +* Integrate seamlessly with popular client-side frameworks and libraries, including [Angular](/visualstudio/javascript/tutorial-asp-net-core-with-angular), [React](/visualstudio/javascript/tutorial-asp-net-core-with-react), [Vue](/visualstudio/javascript/tutorial-asp-net-core-with-vue), and [Bootstrap](https://getbootstrap.com/). |
| 15 | +* Support for hosting Remote Procedure Call (RPC) services using [gRPC](xref:grpc/index). |
| 16 | +* A cloud-ready, environment-based [configuration system](xref:fundamentals/configuration/index). |
| 17 | +* Built-in [dependency injection](xref:fundamentals/dependency-injection). |
| 18 | +* A lightweight, [high-performance](https://github.com/aspnet/benchmarks), and modular HTTP request pipeline. |
| 19 | +* Ability to host in the cloud or on-premises with the following: |
| 20 | + * [Kestrel](xref:fundamentals/servers/kestrel) |
| 21 | + * [IIS](xref:host-and-deploy/iis/index) |
| 22 | + * [HTTP.sys](xref:fundamentals/servers/httpsys) |
| 23 | + * [Nginx](xref:host-and-deploy/linux-nginx) |
| 24 | + * [Docker](xref:host-and-deploy/docker/index) |
| 25 | +* [Side-by-side versioning](/dotnet/standard/choosing-core-framework-server#side-by-side-net-versions-per-application-level). |
| 26 | +* Tooling that simplifies modern web development. |
| 27 | + |
| 28 | +:::moniker-end |
| 29 | + |
| 30 | +:::moniker range=">= aspnetcore-3.0 < aspnetcore-6.0" |
| 31 | + |
| 32 | +<!-- AUTHOR NOTE: >=3.0 <6.0 content includes Blazor --> |
| 33 | + |
| 34 | +* A unified story for building web apps, web APIs, Azure IoT (Internet of Things) apps, and mobile backends. |
4 | 35 | * Architected for testability. |
5 | | -* [Blazor](xref:blazor/index) lets you use C# in the browser alongside JavaScript. Share server-side and client-side app logic all written with .NET. |
6 | | -* [Razor Pages](xref:razor-pages/index) makes coding page-focused scenarios easier and more productive. |
| 36 | +* [Blazor](xref:blazor/index) lets you create rich interactive client-side UIs using [.NET](/dotnet/standard/tour)/[C#](/dotnet/csharp/) with wide browser support based on HTML/JavaScript, including mobile browsers. You can also build hybrid desktop and mobile apps with .NET and Blazor. |
| 37 | +* Supports [Razor Pages](xref:razor-pages/index) and [Model-View-Controller (MVC)](xref:mvc/overview) app development. |
7 | 38 | * Ability to develop and run on Windows, macOS, and Linux. |
8 | 39 | * Open-source and [community-focused](https://live.asp.net/). |
9 | | -* Integration of [modern, client-side frameworks](xref:blazor/index) and development workflows. |
| 40 | +* Integrate seamlessly with popular client-side frameworks and libraries, including [Angular](/visualstudio/javascript/tutorial-asp-net-core-with-angular), [React](/visualstudio/javascript/tutorial-asp-net-core-with-react), [Vue](/visualstudio/javascript/tutorial-asp-net-core-with-vue), and [Bootstrap](https://getbootstrap.com/). |
10 | 41 | * Support for hosting Remote Procedure Call (RPC) services using [gRPC](xref:grpc/index). |
11 | 42 | * A cloud-ready, environment-based [configuration system](xref:fundamentals/configuration/index). |
12 | 43 | * Built-in [dependency injection](xref:fundamentals/dependency-injection). |
13 | 44 | * A lightweight, [high-performance](https://github.com/aspnet/benchmarks), and modular HTTP request pipeline. |
14 | | -* Ability to host on the following: |
| 45 | +* Ability to host in the cloud or on-premises with the following: |
15 | 46 | * [Kestrel](xref:fundamentals/servers/kestrel) |
16 | 47 | * [IIS](xref:host-and-deploy/iis/index) |
17 | 48 | * [HTTP.sys](xref:fundamentals/servers/httpsys) |
18 | 49 | * [Nginx](xref:host-and-deploy/linux-nginx) |
19 | 50 | * [Docker](xref:host-and-deploy/docker/index) |
20 | 51 | * [Side-by-side versioning](/dotnet/standard/choosing-core-framework-server#side-by-side-net-versions-per-application-level). |
21 | 52 | * Tooling that simplifies modern web development. |
| 53 | + |
| 54 | +:::moniker-end |
| 55 | + |
| 56 | +:::moniker range="< aspnetcore-3.0" |
| 57 | + |
| 58 | +* A unified story for building web apps, web APIs, Azure IoT (Internet of Things) apps, and mobile backends. |
| 59 | +* Architected for testability. |
| 60 | +* Supports [Razor Pages](xref:razor-pages/index) and [Model-View-Controller (MVC)](xref:mvc/overview) app development. |
| 61 | +* Ability to develop and run on Windows, macOS, and Linux. |
| 62 | +* Open-source and [community-focused](https://live.asp.net/). |
| 63 | +* Integrate seamlessly with popular client-side frameworks and libraries, including [Angular](/visualstudio/javascript/tutorial-asp-net-core-with-angular), [React](/visualstudio/javascript/tutorial-asp-net-core-with-react), [Vue](/visualstudio/javascript/tutorial-asp-net-core-with-vue), and [Bootstrap](https://getbootstrap.com/). |
| 64 | +* Support for hosting Remote Procedure Call (RPC) services using [gRPC](xref:grpc/index). |
| 65 | +* A cloud-ready, environment-based [configuration system](xref:fundamentals/configuration/index). |
| 66 | +* Built-in [dependency injection](xref:fundamentals/dependency-injection). |
| 67 | +* A lightweight, [high-performance](https://github.com/aspnet/benchmarks), and modular HTTP request pipeline. |
| 68 | +* Ability to host in the cloud or on-premises with the following: |
| 69 | + * [Kestrel](xref:fundamentals/servers/kestrel) |
| 70 | + * [IIS](xref:host-and-deploy/iis/index) |
| 71 | + * [HTTP.sys](xref:fundamentals/servers/httpsys) |
| 72 | + * [Nginx](xref:host-and-deploy/linux-nginx) |
| 73 | + * [Docker](xref:host-and-deploy/docker/index) |
| 74 | +* [Side-by-side versioning](/dotnet/standard/choosing-core-framework-server#side-by-side-net-versions-per-application-level). |
| 75 | +* Tooling that simplifies modern web development. |
| 76 | + |
| 77 | +:::moniker-end |
0 commit comments