.NET vs .NET Core Vs .NET Standard Vs .NET Framework

Microsoft has created huge confusion over the naming of their .NET products. We have .NET Framework, .NET, .NET Core, .NET Standard, etc all having .NET in them. In this article we will explain difference between .NET Vs .NET Core, .NET Standard & .NET Framework in detail

.NET Framework

The .NET Framework is a software development framework created by Microsoft that provides a framework for building desktop, web, and mobile applications. It was released in 2002 and has become one of the popular development frameworks.

The .NET Framework consists of two major components. One is the Common Language Runtime (CLR), and the other is the Framework Class Library (FCL). The CLR is responsible for managing the execution of .NET programs. At the same time, the FCL provides a wide range of libraries and APIs for common tasks such as file I/O, network communication, and database access.

It supported various programming languages like C# and Visual Basic.NET. 

Development Models

The .NET Framework supported several development paradigms. Some of the important models are

Windows Forms for building desktop applications under Windows 

WPF (Windows Presentation Foundation) framework for building desktop applications with advanced graphics and multimedia capabilities

ASP.NET Web Forms is a web application development framework for building dynamic and interactive web applications with a server-side component model

ASP.NET MVC is a framework that uses MVC (Model-View-Controller) to build web applications.

Apart from the above, Framework also supports WCF, Entity Framework, etc.

Timeline of .NET Framework

VersionRelease Year
.NET Framework 2.02005
.NET Framework 3.02006
.NET Framework 4.02010
.NET Framework 4.82019

Drawbacks

One of the biggest drawbacks of the .NET framework is that it is tied to Windows. The Windows-only approach cost Microsoft dearly. It started losing developers to free open-source products like Java, NodeJS, Python, PHP, etc.

.NET framework has grown too big, become bulky, and had memory management and performance issues.

Hence, Microsoft needed to do something to stop users from leaving its platforms. Therefore, they developed a new framework .NET Core.  

.NET Core 

.NET Core is a free, cross-platform, open-source platform for developers to build many types of applications.

It is a complete redesign of the .NET Framework. It is cross-platform and no longer tied to the Windows OS. You can also run it on Linux, Mac, etc. .NET Core is an open-source framework maintained by Microsoft and the community on GitHub. 

.NET Core has three major versions.

VersionYear
.NET Core 1.02016
.NET Core 2.02017
.NET Core 3.02019
.NET Core 3.1 (LTS)2019

.NET Core renamed to .NET 

The .NET Core version 5.0 was renamed as .NET 5.0, dropping the core from its name.

Since then, .NET has had three major releases. 

VersionRelease Year
.NET 5.02020
.NET 6.02021
.NET 7.02022

Note that there was no .NET Core 4.0 or .NET 4.0. Microsoft skipped this version to avoid confusing it with .NET Framework 4.x, which is still widely used.

Features of .NET / .NET Core

.NET supports many development scenarios. 

Using .NET, you can build 

  1. Cloud-native apps
  2. Console apps
  3. Web apps, web APIs, and microservices
  4. Cross-platform client apps
  5. Desktop apps
  6. Games
  7. Mobile apps
  8. Windows apps
  9. Windows Desktop apps
  10. Windows Forms
  11. Windows WPF
  12. Universal Windows Platform (UWP)
  13. Windows services
  14. Machine learning
  15. Internet of Things (IoT)

Note that support for WebForms has been dropped from the .NET.

.NET Standard

The .NET Standard is a formal specification of .NET APIs intended to be available on all .NET implementations. It defines a uniform set of rules that must be followed across all .NET implementations. 

This was developed so as to ensure that the different implementations of .NET look and feel the same on all platforms.

You can read more about .NET Standard here. 

ASP.NET Vs ASP.NET Core

ASP.NET is a web development platform built on top of .NET Framework. It is tied to windows

ASP.NET Core is a cross-platform web development platform built on top of .NET/.NET Core.

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top