--- title: Choose between ASP.NET and ASP.NET Core author: rick-anderson description: Learn how to choose between ASP.NET and ASP.NET Core. manager: wpickett ms.author: riande ms.date: 05/11/2018 ms.prod: asp.net-core ms.technology: aspnet ms.topic: article uid: fundamentals/choose-between-aspnet-and-aspnetcore --- # Choose between ASP.NET and ASP.NET Core No matter the web app you're creating, ASP.NET has a solution for you: from enterprise web apps targeting Windows Server, to small microservices targeting Linux containers, and everything in between. ## ASP.NET Core ASP.NET Core is an open-source, cross-platform framework for building modern, cloud-based web apps on Windows, macOS, or Linux. ## ASP.NET ASP.NET is a mature framework that provides all the services needed to build enterprise-grade, server-based web apps on Windows. ## Framework selection Review the table below to determine which framework is most appropriate for your needs. | ASP.NET Core | ASP.NET | |---|---| |Build for Windows, macOS, or Linux|Build for Windows| |[Razor Pages](xref:mvc/razor-pages/index) is the recommended approach to create a Web UI as of ASP.NET Core 2.x. See also [MVC](xref:mvc/overview), [Web API](xref:tutorials/first-web-api), and [SignalR](xref:signalr/introduction).|Use [Web Forms](/aspnet/web-forms), [SignalR](/aspnet/signalr), [MVC](/aspnet/mvc), [Web API](/aspnet/web-api/), [WebHooks](/aspnet/webhooks/), or [Web Pages](/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| |[Choose .NET Framework or .NET Core runtime](/dotnet/articles/standard/choosing-core-framework-server)|Use .NET Framework runtime| ## ASP.NET Core scenarios * [Razor Pages](xref:mvc/razor-pages/index) is the recommended approach to create a Web UI as of ASP.NET Core 2.x. * [Websites](xref:tutorials/first-mvc-app/index) * [APIs](xref:tutorials/first-web-api) * [Real-time](xref:signalr/index) ## ASP.NET scenarios * [Websites](/aspnet/mvc) * [APIs](/aspnet/web-api) * [Real-time](/aspnet/signalr) ## Resources * [Introduction to ASP.NET](/aspnet/overview) * [Introduction to ASP.NET Core](xref:index)