Porting from .NET Framework to .NET 5
If you are an existing .NET Framework developer, then you may have existing applications that you are wondering if you should port to .NET 5. You should consider if porting is the right choice for your code, because sometimes, the best choice is not to port.
Could you port?
.NET 5 has great support for the following types of applications on Windows, macOS, and Linux:
- ASP.NET Core MVC web applications
- ASP.NET Core Web API web services (REST/HTTP)
- Console applications
.NET 5 has great support for the following types of applications on Windows:
- Windows Forms applications
- Windows Presentation Foundation (WPF) applications
- Universal Windows Platform (UWP) applications
More Information: UWP apps can be created using C++, JavaScript, C#, and Visual Basic using a custom version of .NET Core. You can read more about this at the following link: https://docs.microsoft.com...