.NET Upgrade Assistant - Get Started

Install and run upgrade-assistant

In your command prompt, run the following command to install the upgrade-assistant tool:

In your terminal, run the following commands to install the upgrade-assistant tool:

Command prompt
dotnet tool install -g upgrade-assistant

Installing this tool may fail if you've configured additional NuGet feed sources. Use the --ignore-failed-sources parameter to treat those failures as warnings instead of errors:

Command prompt
dotnet tool install -g --ignore-failed-sources upgrade-assistant

Now you're ready to run the tool. To upgrade your project, run the following command:

Command prompt
upgrade-assistant upgrade <Path to csproj to upgrade>

The tool also supports additional options. For full tool usage information, see the upgrade-assistant readme on GitHub.

Continue