Once you've installed, open a new command prompt and run the following command:
Once you've installed, open a new terminal and run the following command:
Command prompt
dotnet
If the installation succeeded, you should see an output similar to the following:
Command prompt
Usage: dotnet [options]Usage: dotnet [path-to-application]Options:-h|--help Display help.--info Display .NET information.--list-sdks Display the installed SDKs.--list-runtimes Display the installed runtimes.path-to-application:The path to an application .dll file to execute.
Got an error?
If you receive a 'dotnet' is not recognized as an internal or external command error, make sure you opened a new command prompt. If you can't resolve the issue, use the I ran into an issue button to get help fixing the problem.
Install try-convert
In your command prompt, run the following command to install the try-convert tool:
In your terminal, run the following command to install the try-convert tool:
Command prompt
dotnet tool install -g try-convert
Got an error?
If you run into issues, see the Troubleshooting common issues section of the upgrade-assistant readme on GitHub.
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
Now you're ready to run the tool on a solution. Navigate to the directory containing your solution and run the following command:
Command prompt
upgrade-assistant <MySolution.sln>
Change <MySolution.sln> on the previous command to the name of your solution file.