Home > DevOps > Migration tool assists you in migrating .NET Framework apps to .NET Core

Migration tool assists you in migrating .NET Framework apps to .NET Core

There are two dependencies to run the upgrade assistant.

  1. MSBuild
  2. The “try-convert” .NET tool

The .NET Upgrade Assistant tool also has a dependency on the “try-convert” tool. If you don’t have this already on your system, all you have to run is:

dotnet tool install -g try-convert

To upgrade your current version, run:

dotnet tool update -g try-convert

After that, you can go ahead and install the .NET Upgrade Assistant tool.

dotnet tool install -g upgrade-assistant

.NET Upgrade Assistant Tool Reference Links

Overview of the .NET Upgrade Assistant

Upgrade Assistant GitHub Repo