54 lines
2.3 KiB
Markdown
54 lines
2.3 KiB
Markdown
---
|
|
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: 03/14/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-class, server-based web apps on Windows.
|
|
|
|
## Which one is right for me?
|
|
|
|
| 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/), 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
|
|
|
|
<!-- update link to Razor Pages mvc movie series when done -->
|
|
* [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)
|