I use nexus nuget repository and I want to get my version information list
I use nuget.exe and get all version information if I not use -allversion point I access latest versions
nuget.exe list -Source http://xxxxx/nexus/service/local/nug
et/RepoName/ -allversion
But I want to access specific versions,I give the versionnumber and I want get package list which their version number
Is It possible to do something like that
nuget.exe list -Source http://xxxxx/nexus/service/local/nug et/RepoName/ -version 1.0.1
and returns A 1.0.1 B 1.0.1 C 1.0.1 in the repository ...
I don't believe that
nuget.exe
supports the-version
flag:But, you could use an OData query against the nuget gallery service to get what you are looking for. e.g.