
Microsoft announced the new .NET 5 (future of .NET) in the Build 2019 conference. .NET 5 will be a single unified platform for building applications that run on all platforms (Windows, Linux) and devices (IoT, Mobile).
Suppose you are a .NET developer currently supporting enterprise applications developed in the .NET framework. In that case, you need to know how .NET 5 will affect your current enterprise applications in the long run. .NET 5 is based on .NET Standard, which means not every .NET framework feature will be available in .NET 5. Also, some technology stacks like web forms, WCF, and WWF are not porting into .NET 5. Here, we will look into the details of what is not covered in .NET 5 and the alternatives.Technology stacks not coming to .NET 5
ASP.NET Web Forms
ASP.NET Web Forms will not be coming to .NET 5, and Microsoft is currently recommending moving to Blazor, an experimental project promoted to official recently. The other choices are Angular, React, and Vue SPA frameworks if you are good at JavaScript.
WCF (Windows Communication Foundation)
The announcement of "WCF is going to miss the .NET 5 train" surprised many, including me. There has been a lot of discussion on GitHub to bring back WCF into the .NET core, but Microsoft decided not to bring it because of their initial estimation that porting WCF into .NET Core would take three years. (source : DotNetRocks Podcast)
Microsoft recommends using gRPC as an alternative, a modern open-source high-performance RPC framework that can run in any environment. However, unlike WCF, gRPC cannot be hosted in IIS today because of HTTP/2 implementation of Moreover, HTTP.Sys does not support HTTP response trailing headers which gRPC relies on.
WWF (Windows Workflow Foundation)
Workflow Foundation is not getting ported into .NET Core. However, every enterprise application will have some workflow or BPM tools integrated with it. If you used WWF in your application, Microsoft recommends looking at the unofficial fork of WF runtime for porting into .NET Core.
Technology stacks that are coming to .NET 5
What's Replaced
- EF Core - Entity Framework Core is replacing EF 6 in .Net Core Framework.
- Asp.net Core - Asp.net Core replaces Asp.net. Check the migration guide for porting the asp.net application into the asp.net core.
- ASP.NET Core MVC - ASP.NET Core MVC unified ASP.NET MVC and Web API. Check the migration guide for porting the asp.net MVC app into asp.net core mvc.
- MSIX - Microsoft's new packaging tool replaces the old MSI package installer for desktop applications.
- JsonDocument - New Json Document library from System.Text.Json.JsonDocument API to replace json.net. It is 2-3x times faster than old json.net.
A few other important things to highlight
C# 8.0 introduced many new language features, including Async Stream, Ranges, Nullable Reference Types, Pattern Matching, etc. However, they will be available only on .NET Core 3.0 and above, so it is not coming to Legacy .NET Framework or .NET Core 2.2, 2.1, 1.0. It indicates that ".NET Framework is dead and .NET Core is the future."
Suppose you are planning to port .NET Framework applications into .NET Core. In that case, you will have to analyze the APIs used in your project to see whether it is compatible. .NET Portability Analyzer is a tool that helps to analyze and determine how flexible your application is across .NET platforms.

SIDDHARTHA ZEDIAPosted May 7, 2022, 7:26 PM
Best information
Aluh JohnsonPosted Jul 1, 2020, 12:32 PM
C# corner the way to go
Aluh JohnsonPosted Jul 1, 2020, 12:31 PM
Insightful article
Samir PatelPosted May 15, 2019, 12:23 AM
I am interested in c# and .net but how I can start to learn iam confused
sarfaraz sablePosted May 14, 2019, 5:11 AM
I want to learn new technologies so which one should I learn mvc or core
sarfaraz sablePosted May 14, 2019, 5:10 AM
I want to learn new technologies so which one I should select mvc for core??
Suraj PatelPosted May 13, 2019, 10:56 PM
"If you are currently using Asp.net MVC as full stack web app, you can continue to use the same stack by using Asp.net Core MVC" can you explain this line ?. I Develop web app in MVC 5 then how it affect to me.
Mahesh ChandPosted May 13, 2019, 3:48 PM
Thank you, Jeeva. Could you update this article and may be add, what is coming back in .NET 5 from .NET Framework? That will make it complete article. Thanks
Sanjit Kumar SinghPosted May 13, 2019, 1:07 PM
Nice Information