Search code examples
.net-corecommand-line-interfacedotnet-cli

I installed a tool for dotnet CLI, why command tool list did not show it?


Look at the screenshot so you can better understand my question.enter image description here

Why dotnetsay tool was not listed?


Solution

  • Why is dotnetsay tool not listed?

    Please note that dotnet tool list command does help list all local tools available in the current directory, if you installed dotnetsay as a global tool, you can use following command to list all global tools.

    dotnet tool list -g
    

    Test Result

    enter image description here

    For more information about dotnet tool list command, please check:

    https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-tool-list#examples