I am migrating from VS 2015 to VS 2017 .NET Core. Project contains Nest library with ElasticClient to contact ElasticSearch. I added Nest (5.4.0) as Nuget package to project and created class that is referencing ElasticSearch class, but ElasticClient doesn't exist (The type or namespace name 'ElasticClient' could not be found (are you missing a using directive or an assembly reference?)). Same thing is happening with ConnectionSettings class.
Does Nest library in .NET Core contain ElasticClient class? Should I add another package? Am I doing something wrong? Is there an available .NET Core project that could be used as an example?
Nest.ElasticClientworked happily. Maybe you just didn't restore packages properly yet? Here is my csproj: github.com/Dynatrace/superdump/blob/elasticsearch-support/src/… Here is my code: github.com/Dynatrace/superdump/blob/elasticsearch-support/src/…