Leemyy
dotnet tool not recognized after local install
I solved the issue.
In case anyone stumbles upon this in the future, the issue is in this innocuous little line:
* You intended to execute a .NET program, but dotnet-mgcb-editor-windows does not exist.
Notice how it doesn't say dotnet-mgcb-editor
? Yeah well I did not.
The solution is to also add dotnet-mgcb-editor-windows
(or -linux
/-mac
) as a tool.
Tl;dr: make sure your .config/dotnet-tools.json
contains all these entries:
And then run dotnet tool restore
.9 replies