18

Using the dotnet cli how can you list the available package versions for a specific package?

Simon
  • 33,714
  • 21
  • 133
  • 202

2 Answers2

11

Short answer: It's not possible (as far as I know, as of Nov 25, 2019).

There are some other options, depending on what you're trying to accomplish.

undeniablyrob
  • 1,339
  • 2
  • 16
  • 16
  • thanks. i came to the same conclusion. will mark this as correct until/if the status changes – Simon Nov 26 '19 at 00:14
4

It's possible with "dotnet-search" a dotnet tool.

https://github.com/billpratt/dotnet-search

  • You only need dotnet-core runtime 2.1
  • Install via dotnet tool install --global dotnet-search
  • Search via dotnet search <package-name>