From 114fe8c076a6353940665707d82d7fe477b88760 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Tue, 25 Jul 2017 09:29:40 -0700 Subject: [PATCH] Update choose-aspnet-framework.md (#3811) * Update choose-aspnet-framework.md * Update choose-aspnet-framework.md * Update choose-aspnet-framework.md --- aspnetcore/choose-aspnet-framework.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aspnetcore/choose-aspnet-framework.md b/aspnetcore/choose-aspnet-framework.md index 921739e658..ef01b067c8 100644 --- a/aspnetcore/choose-aspnet-framework.md +++ b/aspnetcore/choose-aspnet-framework.md @@ -30,7 +30,7 @@ ASP.NET is a mature framework that provides all the services needed to build ent | ASP.NET Core | ASP.NET | |---|---| |Build for Windows, macOS, or Linux|Build for Windows| -|Use [MVC](xref:mvc/overview) or [Web API](xref:tutorials/first-web-api)|Use [Web Forms](https://docs.microsoft.com/aspnet/web-forms), [SignalR](https://docs.microsoft.com/aspnet/signalr), [MVC](https://docs.microsoft.com/aspnet/mvc), [Web API](https://docs.microsoft.com/aspnet/web-api/), or [Web Pages](https://docs.microsoft.com/aspnet/web-pages)| +|[Razor Pages](xref:mvc/razor-pages/index) is the recommended approach to create a Web UI with ASP.NET Core 2.0. See also [MVC](xref:mvc/overview) and [Web API](xref:tutorials/first-web-api)|Use [Web Forms](https://docs.microsoft.com/aspnet/web-forms), [SignalR](https://docs.microsoft.com/aspnet/signalr), [MVC](https://docs.microsoft.com/aspnet/mvc), [Web API](https://docs.microsoft.com/aspnet/web-api/), or [Web Pages](https://docs.microsoft.com/aspnet/web-pages)| |Multiple versions per machine|One version per machine| |Develop with Visual Studio, [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/), or [Visual Studio Code](https://code.visualstudio.com/) using C# or F#|Develop with Visual Studio using C#, VB, or F#| |Higher performance than ASP.NET|Good performance| @@ -38,6 +38,8 @@ ASP.NET is a mature framework that provides all the services needed to build ent ## ASP.NET Core scenarios + +* [Razor Pages](xref:mvc/razor-pages/index) is the recommended approach to create a Web UI with ASP.NET Core 2.0. * [Websites](xref:tutorials/first-mvc-app/index) * [APIs](xref:tutorials/first-web-api)