I used the following command in PowerShell which I want to see a list of versions for a specific package, but I get an error.
Find-Package -Name "UmbracoCms" -AllVersions
Find-Package : No match was found for the specified search criteria and package name 'UmbracoCms'. Try Get-PackageSource to see all available registered package sources.
Running Get-PackageSource
gives me:
Name ProviderName IsTrusted Location ---- ------------ --------- -------- nuget.org NuGet True https://api.nuget.org/v3/index.json
What is the problem? Where is my mistake?
I tried to get also for other packages like nunit
and get the same thing..