Do you know how to modernize your .NET applications?

Last updated by Jernej Kavka (JK) [SSW] 6 months ago.See history

With outdated NuGet packages, C# stylings and architectures, keeping our .NET Framework applications up to date can be a pain. Especially when we want to make the leap from .NET Framework to .NET for that juicy performance and compatibility bump.

Luckily Microsoft provides excellent tooling for supporting your great leap into .NET. The best part? It's free and open source!

The .NET Upgrade Assistant is a .NET global tool that helps you incrementally upgrade your .NET Framework-based Windows applications. It's available on GitHub as a public repository.

upgrade assistant CLI
Figure: Use the CLI version of Upgrade Assistant

✅ Benefits

  • Stay agile - Receive immediate feedback on your migration progress
  • Guided steps - Get the recommended steps for upgrading your application and action them as you see fit
  • Multiple project types and languages - Receive support for project types including:

    • ASP.NET MVC
    • Windows Forms
    • Windows Presentation Foundation
    • Console
    • Libraries
    • UWP to Windows App SDK (WinUI)
    • Xamarin.Forms to .NET MAUI
  • Extensible - Customize the .NET Upgrade Assistant as you see fit
  • Open source - Contribute features and bugfixes to help others achieve the same goal
  • Upgrading to modern .NET - Provides more opportunity for the future of your application

❌ Downsides

  • Generic - The .NET Upgrade Assistant tries its best to be generic, and therefore may not be able to identify and work with your proprietary NuGet packages. Those dependencies will need to be upgraded separately, or an alternative needs to be found.
  • Time consuming - While the .NET Upgrade Assistant does well to reduce the time and cost of upgrading your .NET applications, it will still take a significant amount of time, especially on live projects.
  • Code modernization - The tool will not upgrade the code style or use modern C# patterns. The bulk of code will remain identical which will still look distinctly .NET Framework-like code with some of the namespaces and minor refactors.

If your project is overly complex or encounters significant challenges with .NET 8 Upgrade Assistant, you may need to revert to the original project and then continue with the instructions on how to handle complex .NET migrations.

We open source. Powered by GitHub