Reputation: 13
I am having an issue with the Elasticsearch.Net Nuget package. I am not very familiar with the .Net environment and more with development, and after i followed the quick start for Nest (http://nest.azurewebsites.net/elasticsearch-net/quick-start.html) i cannot install the Elasticsearch.Net package but the Nest Nuget is installed. The error i am getting is:
Install-Package : Unable to find package 'Elasticsearch.Net'.
At line:1 char:16
+ Install-Package <<<< Elasticsearch.Net
+ CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId :NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
Upvotes: 0
Views: 646
Reputation: 22555
Even though the documentation has been updated, the initial release of the Elasticsearch.Net 1.0 client has not been published on NuGet yet. NEST is available on NuGet as you found, but is still at version 0.12.0. Version 1.0 of Elasticsearch.Net and NEST should be released shortly. In the meantime, you can continue to use NEST 0.12.0. The 1.0 documentation is still pretty accurate for most of the basic operations and querying. Alternately, you could get the latest source for Elasticsearch.Net and NEST from the Elasticsearch.Net GitHub site, compile it locally and manually reference it your project.
Upvotes: 1