Issue
lldb is ok and version is 3.9.0, I want to debug a dump file, So I need to install dotnet-symbol tool.
src="https://i.stack.imgur.com/uusOu.jpg" alt="lldb-version" />
When installing dotnet-symbol in centos7, I found that the latest version on nuget.org is only compatible with .NET 6.0, but I couldn't find a version that matches .NET Core 3.1.
Is there any way to handle this situation?
Solution
According to the error message, we need to use older version.
Try this.
dotnet tool install --global dotnet-symbol --version 1.0.412101
Answered By - Jason Pan Answer Checked By - Timothy Miller (WPSolving Admin)