Jump to content

ASP.NET Core

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by FrescoBot (talk | contribs) at 03:49, 20 July 2019 (Bot: link syntax and minor changes). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

ASP.NET Core
Developer(s)Microsoft and the community.
Stable release
2.2.4 / 9 April 2019; 5 years ago (2019-04-09)[1]
Repository
Written inC#
Operating systemWindows, macOS and Linux
Platformcross-platform
Typeweb framework
LicenseApache License 2.0[2]
Websitedotnet.microsoft.com/apps/aspnet

ASP.NET Core is a free and open-source web framework, and higher performance than ASP.NET,[3] developed by Microsoft and the community.[4] It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET Core. However the expected version ASP.NET Core 3 was announced to work only on .NET Core dropping support of .NET Framework.[5]

The framework is a complete rewrite that unites the previously separate ASP.NET MVC and ASP.NET Web API into a single programming model.

Despite being a new framework, built on a new web stack, it does have a high degree of concept compatibility with ASP.NET MVC. ASP.NET Core applications supports side by side versioning in which different applications, running on the same machine, can target different versions of ASP.NET Core. This is not possible with previous versions of ASP.NET.

Release history

Version Number Release Date End of Support Development Tool
1.0 2016-06-27 2019-06-27 Visual Studio 2015, 2017
1.1 2016-11-18 2019-06-27 Visual Studio 2015, 2017
2.0 2017-08-14 2018-10-01 Visual Studio 2017
2.1 Long-term support 2018-05-30 2021-08-21[6] Visual Studio 2017
2.2 2018-12-04[7] Visual Studio 2017 15.9 and 2019 16.0 preview 1
3.0 in development Visual Studio 2017 and 2019

Naming

Originally deemed ASP.NET vNext, the framework was going to be called ASP.NET 5 when ready. However, in order to avoid implying it is an update to the existing ASP.NET framework, Microsoft later changed the name to ASP.NET Core at the 1.0 release.[8]

Features

  • No-compile developer experience (i.e. compilation is continuous, so that the developer does not have to invoke the compilation command)
  • Modular framework distributed as NuGet packages
  • Cloud-optimized runtime (optimised for the internet)
  • Host-agnostic via Open Web Interface for .NET (OWIN) support[9][10] - runs in IIS or standalone
  • A unified story for building web UI and web APIs (i.e. both the same)
  • A cloud-ready environment-based configuration system
  • A light-weight and modular HTTP request pipeline
  • Build and run cross-platform ASP.NET Core apps on Windows, Mac, and Linux
  • Open-source and community-focused
  • Side-by-side app versioning when targeting .NET Core.

Components

See also

References

  1. ^ https://github.com/aspnet/AspNetCore/releases
  2. ^ "ASP.NET Core license". GitHub. Retrieved 2019-01-08.
  3. ^ https://docs.microsoft.com/en-us/aspnet/core/fundamentals/choose-aspnet-framework?view=aspnetcore-2.1
  4. ^ singh Satinder. "Introduction to ASP.NET Core". microsoft.com. Retrieved 10 July 2017.
  5. ^ https://docs.microsoft.com/en-us/aspnet/core/?view=aspnetcore-2.2
  6. ^ https://github.com/dotnet/core/blob/master/microsoft-support.md
  7. ^ https://blogs.msdn.microsoft.com/webdev/2018/12/04/asp-net-core-2-2-available-today/
  8. ^ Jeffrey T. Fritz. "ASP.NET 5 is dead - Introducing ASP.NET Core 1.0 and .NET Core 1.0". .NET Web Development and Tools Blog. Retrieved 20 January 2016.
  9. ^ "OWIN". ASP.NET 0.0.1 documentation.
  10. ^ "Roadmap". Github.