A request that this article title be changed to .NET is under discussion. Please do not move this article until the discussion is closed. |
Developer(s) | .NET Foundation |
---|---|
Initial release | June 27, 2016 |
Stable release | 5.0.7[1]
/ 8 June 2021 |
Preview release | 6.0 Preview 4[2]
/ 25 May 2021 |
Repository | |
Written in | C++ and C# |
Operating system | Windows, Linux and macOS |
Predecessor | .NET Framework |
Type | Software framework |
License | MIT License[3] |
Website | dotnet |
.NET (previously named .NET Core) is a free and open-source, managed computer software framework for Windows, Linux, and macOS operating systems.[4] It is a cross-platform[5] successor to .NET Framework.[6] The project is primarily developed by Microsoft employees by way of the .NET Foundation, and released under the MIT License.[3]
On November 12, 2014, Microsoft announced .NET Core, in an effort to include cross-platform support for .NET, including Linux and macOS, source for the .NET Core CoreCLR implementation, source for the "entire […] library stack" for .NET Core, and the adoption of a conventional ("bazaar"-like) open-source development model under the consolation stewardship of the .NET Foundation. Miguel de Icaza describes .NET Core as a "redesigned version of .NET that is based on the simplified version of the class libraries",[7] and Microsoft's Immo Landwerth explained that .NET Core would be "the foundation of all future .NET platforms". At the time of the announcement, the initial release of the .NET Core project had been seeded with a subset of the libraries' source code and coincided with the relicensing of Microsoft's existing .NET reference source away from the restrictions of the Ms-RSL. Landwerth acknowledged the disadvantages of the formerly selected shared license, explaining that it made codename Rotor "a non-starter" as a community-developed open source project because it did not meet the criteria of an Open Source Initiative (OSI) approved license.[8][9][10]
.NET Core 1.0 was released on June 27, 2016,[11] along with Microsoft Visual Studio 2015 Update 3, which enables .NET Core development.[12] .NET Core 1.0.4 and .NET Core 1.1.1 were released along with .NET Core Tools 1.0 and Visual Studio 2017 on March 7, 2017.[13]
.NET Core 2.0 was released on August 14, 2017, along with Visual Studio 2017 15.3, ASP.NET Core 2.0, and Entity Framework Core 2.0.[14] .NET Core 2.1 was released on May 30, 2018.[15] NET Core 2.2 was released on December 4, 2018.[16]
.NET Core 3 was released on September 23, 2019.[17] .NET Core 3 adds support for Windows desktop application development[18] and significant performance improvements throughout the base library.
In November 2020, Microsoft released .NET 5.0 which replaced .NET Framework. The "Core" branding was removed and version 4.0 was skipped to avoid conflation with .NET Framework. It addresses the patent concerns related to the .NET Framework.[19]
Version | Release date | Released with | Latest update | Latest update date | Support ends[20] |
---|---|---|---|---|---|
.NET Core 1.0 | 2016-06-27[21] | Visual Studio 2015 Update 3 | 1.0.16 | 2019-05-14 | June 27, 2019 |
.NET Core 1.1 | 2016-11-16[22] | Visual Studio 2017 Version 15.0 | 1.1.13 | 2019-05-14 | June 27, 2019 |
.NET Core 2.0 | 2017-08-14[14] | Visual Studio 2017 Version 15.3 | 2.0.9 | 2018-07-10 | October 1, 2018 |
.NET Core 2.1 | 2018-05-30[15] | Visual Studio 2017 Version 15.7 | 2.1.28 (LTS) | 2021-05-11 | August 21, 2021 |
.NET Core 2.2 | 2018-12-04[16] | Visual Studio 2019 Version 16.0 | 2.2.8 | 2019-11-19 | December 23, 2019 |
.NET Core 3.0 | 2019-09-23[23] | Visual Studio 2019 Version 16.3 | 3.0.3 | 2020-02-18 | March 3, 2020 |
.NET Core 3.1 | 2019-12-03[24] | Visual Studio 2019 Version 16.4 | 3.1.16 (LTS) | 2021-06-08 | December 3, 2022 |
.NET 5 | 2020-11-10[25] | Visual Studio 2019 Version 16.8 | 5.0.7 | 2021-06-08 | 3 months after .NET 6 release (around February 2022) |
[25][26] | .NET 62021-11 (projected) | 6.0.0 Preview 4 (release version will be LTS[27]) | 2021-05-25 | November 2024 (projected) | |
[26] | .NET 72022-11 (projected) | February 2025 (projected) | |||
[26] | .NET 82023-11 (projected) | (will be LTS) | November 2026 (projected) |
.NET Core 2.1 and later, i.e. including .NET 5, support Alpine Linux (i.e. musl libc it uses[28]).[29]
As of .NET 5, Windows Arm64 is natively supported. Previously, .NET on ARM was actually emulated x86 programs.[25]
.NET fully supports C# and F# (and C++/CLI as of 3.1; only enabled on Windows) and supports Visual Basic .NET (for version 15.5 in .NET Core 5.0.100-preview.4, and some old versions supported in old .NET Core).
VB.NET compiles and runs on .NET, but as of .NET Core 3.1, the separate Visual Basic Runtime is not implemented. Microsoft initially announced that .NET Core 3 would include the Visual Basic Runtime, but after two years the timeline for such support was updated to .NET 5.[30][31]
.NET supports four cross-platform scenarios: ASP.NET Core web apps; command-line apps; libraries; and Universal Windows Platform apps. Prior to .NET Core 3.0, it did not implement Windows Forms or Windows Presentation Foundation (WPF), which render the standard GUI for desktop software on Windows.[32][33] Now, however, .NET Core 3 supports desktop technologies Windows Forms, WPF, and Universal Windows Platform (UWP).[34] It is also possible to write cross-platform graphical applications using .NET with the GTK# language-binding for the GTK widget toolkit.
.NET supports use of NuGet packages. Unlike .NET Framework, which is serviced using Windows Update, .NET relies on its package manager to receive updates.[32][33] Starting with December 2020 however, .NET updates started being delivered via Windows Update as well.[35]
The two main components of .NET are CoreCLR and CoreFX, which are comparable to the Common Language Runtime (CLR) and the Framework Class Library (FCL) of the .NET Framework's Common Language Infrastructure (CLI) implementation.[36]
As a CLI implementation of Virtual Execution System (VES), CoreCLR is a complete runtime and virtual machine for managed execution of CLI programs and includes a just-in-time compiler called RyuJIT.[37][a] .NET Core also contains CoreRT, the .NET Native runtime optimized to be integrated into AOT compiled native binaries.[39]
As a CLI implementation of the foundational Standard Libraries,[40] CoreFX shares a subset of .NET Framework APIs, however, it also comes with its own APIs that are not part of the .NET Framework.[32] A variant of the .NET library is used for UWP.[41]
The .NET command-line interface offers an execution entry point for operating systems and provides developer services like compilation and package management.[42]
The official community mascot of .NET is the .NET Bot (stylized as "dotnet bot" or "dotnet-bot"). The dotnet bot served as the placeholder developer for the initial check-in of the .NET source code when it was open-sourced.[43] It has since been used as the official mascot.
By: Wikipedia.org
Edited: 2021-06-18 19:42:53
Source: Wikipedia.org