Skip to content

Build improvements #1207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
Jan 22, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c016822
await usage in comunity provided HttpClientConnection should use Conf…
Mpdreamz Jan 19, 2015
33158fe
added one more ConfigureAwait(false) to HttpClientConnection
Mpdreamz Jan 19, 2015
e0db1e9
added a paket bat file that installs and calls paket
Mpdreamz Jan 19, 2015
7d64c6d
removed unused deps
Mpdreamz Jan 19, 2015
92baaf3
- moved to paket instead of nuget
Mpdreamz Jan 19, 2015
1396bea
NEST.csproj used a very old file format (vs2010 i think) updated to b…
Mpdreamz Nov 5, 2014
9c5dfb6
removed ghostdoc file, we are not using ghostdoc
Mpdreamz Nov 5, 2014
69d1398
multiple builds
Mpdreamz Jan 1, 2015
ee399a0
build now loops over frameworks
Mpdreamz Jan 19, 2015
02939ef
we now build net40 and net45 seperately in only two msbuild calls whi…
Mpdreamz Jan 19, 2015
a76a630
Build now builds net40 (where possible) and net45 and copies to build…
Mpdreamz Jan 20, 2015
814be43
Refactored build scripts into seperate project and better types.
Mpdreamz Jan 20, 2015
2be32ac
updated nuspec files to include from new locations and the newly 4.5 …
Mpdreamz Jan 20, 2015
68d31a7
Releasing now packages nuget packages successfully again
Mpdreamz Jan 20, 2015
ec812c3
unignored contents of .paket/
Mpdreamz Jan 20, 2015
563f782
updated reference paths to use #I directive so they should play nice …
Mpdreamz Jan 21, 2015
e4404b9
updated build to work with xbuild and mono
Mpdreamz Jan 21, 2015
84969a9
never compile fsharp scripts project, works under msbuild xbuild barfs
Mpdreamz Jan 21, 2015
269e013
Merge branch 'feature/move-to-paket' of github.com:elasticsearch/elas…
Mpdreamz Jan 21, 2015
a52ba60
rename JsonNET to JsonNet
Mpdreamz Jan 21, 2015
957a6fb
removed folder differing only in casing
Mpdreamz Jan 21, 2015
0184fcd
renamed folder with the proper casing
Mpdreamz Jan 21, 2015
b4f7dc1
updated reference to JsonNET to JsonNet
Mpdreamz Jan 21, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ build/tools/*
!build/*.fsx
!build/*.ps1
!build/*.nuspec
!build/scripts
!.paket/*.exe

/dep/Newtonsoft.Json.4.0.2
!docs/build
Expand Down
Binary file added .paket/paket.bootstrapper.exe
Binary file not shown.
Binary file added .paket/paket.exe
Binary file not shown.
38 changes: 38 additions & 0 deletions .paket/paket.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Enable the restore command to run before builds -->
<RestorePackages Condition=" '$(RestorePackages)' == '' ">true</RestorePackages>
<!-- Download Paket.exe if it does not already exist -->
<DownloadPaket Condition=" '$(DownloadPaket)' == '' ">true</DownloadPaket>
<PaketToolsPath>$(MSBuildThisFileDirectory)</PaketToolsPath>
<PaketRootPath>$(MSBuildThisFileDirectory)..\</PaketRootPath>
</PropertyGroup>
<PropertyGroup>
<!-- Paket command -->
<PaketExePath Condition=" '$(PaketExePath)' == '' ">$(PaketToolsPath)paket.exe</PaketExePath>
<PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' ">$(PaketToolsPath)paket.bootstrapper.exe</PaketBootStrapperExePath>
<PaketCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketExePath)"</PaketCommand>
<PaketCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(PaketExePath)</PaketCommand>
<PaketBootStrapperCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>
<PaketBootStrapperCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(PaketBootStrapperExePath)</PaketBootStrapperCommand>
<!-- Commands -->
<PaketReferences Condition="!Exists('$(MSBuildProjectFullPath).paket.references')">$(MSBuildProjectDirectory)\paket.references</PaketReferences>
<PaketReferences Condition="Exists('$(MSBuildProjectFullPath).paket.references')">$(MSBuildProjectFullPath).paket.references</PaketReferences>
<RestoreCommand>$(PaketCommand) restore --references-files "$(PaketReferences)"</RestoreCommand>
<DownloadPaketCommand>$(PaketBootStrapperCommand)</DownloadPaketCommand>
<!-- We need to ensure packages are restored prior to assembly resolve -->
<BuildDependsOn Condition="$(RestorePackages) == 'true'">RestorePackages; $(BuildDependsOn);</BuildDependsOn>
</PropertyGroup>
<Target Name="CheckPrerequisites">
<!-- Raise an error if we're unable to locate paket.exe -->
<Error Condition="'$(DownloadPaket)' != 'true' AND !Exists('$(PaketExePath)')" Text="Unable to locate '$(PaketExePath)'" />
<MsBuild Targets="DownloadPaket" Projects="$(MSBuildThisFileFullPath)" Properties="Configuration=NOT_IMPORTANT;DownloadPaket=$(DownloadPaket)" />
</Target>
<Target Name="DownloadPaket">
<Exec Command="$(DownloadPaketCommand)" Condition=" '$(DownloadPaket)' == 'true' AND !Exists('$(PaketExePath)')" />
</Target>
<Target Name="RestorePackages" DependsOnTargets="CheckPrerequisites">
<Exec Command="$(RestoreCommand)" WorkingDirectory="$(PaketRootPath)" Condition="Exists('$(PaketReferences)')" />
</Target>
</Project>
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ IF NOT [%2]==[] (set VERSION="%2")
shift
shift

"build\tools\FAKE\tools\Fake.exe" "build\\build.fsx" "target=%TARGET%" "version=%VERSION%"
"build\tools\FAKE\tools\Fake.exe" "build\\scripts\\build.fsx" "target=%TARGET%" "version=%VERSION%"
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ libdir=$PWD/build/tools/FAKE/tools/
$FSHARPI --lib:$libdir $@
EOF
chmod +x fsharpi
mono --runtime=v4.0 "$FAKE" build/build.fsx "skiptests=1" $@
mono --runtime=v4.0 "$FAKE" build/scripts/build.fsx "skiptests=1" $@
MONOEXIT=$?
rm fsharpi
#FORCE exit code to be that of calling fake not the last rm action
Expand Down
44 changes: 22 additions & 22 deletions build/Elasticsearch.Net.Connection.HttpClient.nuspec
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Elasticsearch.Net.Connection.HttpClient</id>
<version>1.3.0</version>
<title>Elasticsearch.Net.Connection.HttpClient - IConnection implementation that uses Http</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>An IConnection implementation that uses System.Net.Http.HttpClient to talk with elasticsearch</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An IConnection implementation that uses System.Net.Http.HttpClient to talk with elasticsearch</description>
<dependencies>
<dependency id="Elasticsearch.Net" version="1.3.0"/>
</dependencies>
<tags>elasticsearch elastic search lucene thrift nest</tags>
</metadata>
<files>
<file src="output\Elasticsearch.Net.Connection.HttpClient\Elasticsearch.Net.Connection.HttpClient.dll" target="lib\net45"/>
<file src="output\Elasticsearch.Net.Connection.HttpClient\Elasticsearch.Net.Connection.HttpClient.pdb" target="lib\net45"/>
<file src="output\Elasticsearch.Net.Connection.HttpClient\Elasticsearch.Net.Connection.HttpClient.XML" target="lib\net45"/>
</files>
<metadata>
<id>Elasticsearch.Net.Connection.HttpClient</id>
<version>1.3.0</version>
<title>Elasticsearch.Net.Connection.HttpClient - IConnection implementation that uses Http</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>An IConnection implementation that uses System.Net.Http.HttpClient to talk with elasticsearch</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An IConnection implementation that uses System.Net.Http.HttpClient to talk with elasticsearch</description>
<dependencies>
<dependency id="Elasticsearch.Net" version="1.3.0"/>
</dependencies>
<tags>elasticsearch elastic search lucene thrift nest</tags>
</metadata>
<files>
<file src="output\Elasticsearch.Net.Connection.HttpClient\net45\Elasticsearch.Net.Connection.HttpClient.dll" target="lib\net45"/>
<file src="output\Elasticsearch.Net.Connection.HttpClient\net45\Elasticsearch.Net.Connection.HttpClient.pdb" target="lib\net45"/>
<file src="output\Elasticsearch.Net.Connection.HttpClient\net45\Elasticsearch.Net.Connection.HttpClient.XML" target="lib\net45"/>
</files>
</package>
49 changes: 27 additions & 22 deletions build/Elasticsearch.Net.Connection.Thrift.nuspec
Original file line number Diff line number Diff line change
@@ -1,25 +1,30 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Elasticsearch.Net.Connection.Thrift</id>
<version>1.3.0</version>
<title>Elasticsearch.Net.Connection.Thrift - Thrift support for Elasticsearch.Net</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</description>
<dependencies>
<dependency id="Elasticsearch.Net" version="1.3.0"/>
</dependencies>
<tags>elasticsearch elastic search lucene thrift nest</tags>
</metadata>
<files>
<file src="output\Elasticsearch.Net.Connection.Thrift\Elasticsearch.Net.Connection.Thrift.dll" target="lib"/>
<file src="output\Elasticsearch.Net.Connection.Thrift\Elasticsearch.Net.Connection.Thrift.pdb" target="lib"/>
<file src="output\Elasticsearch.Net.Connection.Thrift\Elasticsearch.Net.Connection.Thrift.XML" target="lib"/>
</files>
<metadata>
<id>Elasticsearch.Net.Connection.Thrift</id>
<version>1.3.0</version>
<title>Elasticsearch.Net.Connection.Thrift - Thrift support for Elasticsearch.Net</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</description>
<dependencies>
<dependency id="Elasticsearch.Net" version="1.3.0"/>
</dependencies>
<tags>elasticsearch elastic search lucene thrift nest</tags>
</metadata>
<files>
<file src="output\Elasticsearch.Net.Connection.Thrift\net40\Elasticsearch.Net.Connection.Thrift.dll" target="lib"/>
<file src="output\Elasticsearch.Net.Connection.Thrift\net40\Elasticsearch.Net.Connection.Thrift.pdb" target="lib"/>
<file src="output\Elasticsearch.Net.Connection.Thrift\net40\Elasticsearch.Net.Connection.Thrift.XML" target="lib"/>

<file src="output\Elasticsearch.Net.Connection.Thrift\net45\Elasticsearch.Net.Connection.Thrift.dll" target="lib\net45"/>
<file src="output\Elasticsearch.Net.Connection.Thrift\net45\Elasticsearch.Net.Connection.Thrift.pdb" target="lib\net45"/>
<file src="output\Elasticsearch.Net.Connection.Thrift\net45\Elasticsearch.Net.Connection.Thrift.XML" target="lib\net45"/>

</files>
</package>
51 changes: 28 additions & 23 deletions build/Elasticsearch.Net.JsonNET.nuspec
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Elasticsearch.Net.JsonNET</id>
<version>1.3.0</version>
<title>Elasticsearch.Net.JsonNET - Json.NET serializer for the low level elasticsearch client</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>IElasticsearchSerializer implementation that allows you to use Json.NET with the lowlevel client</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This package is only useful if you use the low level client ONLY and do not use NEST but would like to use JSON.NET as your serializer</description>
<dependencies>
<dependency id="Elasticsearch.Net" version="1.3.0"/>
<dependency id="Newtonsoft.Json" version="6.0.1"/>
</dependencies>
<tags>elasticsearch elastic search lucene thrift nest</tags>
</metadata>
<files>
<file src="output\Elasticsearch.Net.JsonNET\Elasticsearch.Net.JsonNET.dll" target="lib"/>
<file src="output\Elasticsearch.Net.JsonNET\Elasticsearch.Net.JsonNET.pdb" target="lib"/>
<file src="output\Elasticsearch.Net.JsonNET\Elasticsearch.Net.JsonNET.XML" target="lib"/>
</files>
<metadata>
<id>Elasticsearch.Net.JsonNET</id>
<version>1.3.0</version>
<title>Elasticsearch.Net.JsonNET - Json.NET serializer for the low level elasticsearch client</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>IElasticsearchSerializer implementation that allows you to use Json.NET with the lowlevel client</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This package is only useful if you use the low level client ONLY and do not use NEST but would like to use JSON.NET as your serializer</description>
<dependencies>
<dependency id="Elasticsearch.Net" version="1.3.0"/>
<dependency id="Newtonsoft.Json" version="6.0.1"/>
</dependencies>
<tags>elasticsearch elastic search lucene thrift nest</tags>
</metadata>
<files>
<file src="output\Elasticsearch.Net.JsonNET\net40\Elasticsearch.Net.JsonNET.dll" target="lib"/>
<file src="output\Elasticsearch.Net.JsonNET\net40\Elasticsearch.Net.JsonNET.pdb" target="lib"/>
<file src="output\Elasticsearch.Net.JsonNET\net40\Elasticsearch.Net.JsonNET.XML" target="lib"/>

<file src="output\Elasticsearch.Net.JsonNET\net45\Elasticsearch.Net.JsonNET.dll" target="lib\net45"/>
<file src="output\Elasticsearch.Net.JsonNET\net45\Elasticsearch.Net.JsonNET.pdb" target="lib\net45"/>
<file src="output\Elasticsearch.Net.JsonNET\net45\Elasticsearch.Net.JsonNET.XML" target="lib\net45"/>

</files>
</package>
49 changes: 28 additions & 21 deletions build/Elasticsearch.Net.nuspec
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Elasticsearch.Net</id>
<version>1.3.0</version>
<title>Elasticsearch.Net - official low level elasticsearch client</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>Exposes all the api endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.
</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Exposes all the api endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.
</description>
<tags>elasticsearch elastic search lucene nest</tags>
</metadata>
<files>
<file src="output\Elasticsearch.Net\Elasticsearch.Net.dll" target="lib"/>
<file src="output\Elasticsearch.Net\Elasticsearch.Net.pdb" target="lib"/>
<file src="output\Elasticsearch.Net\Elasticsearch.Net.XML" target="lib"/>
</files>
<metadata>
<id>Elasticsearch.Net</id>
<version>1.3.0</version>
<title>Elasticsearch.Net - official low level elasticsearch client</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>
Exposes all the api endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.
</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
Exposes all the api endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.
</description>
<tags>elasticsearch elastic search lucene nest</tags>
</metadata>
<files>
<file src="output\Elasticsearch.Net\net40\Elasticsearch.Net.dll" target="lib"/>
<file src="output\Elasticsearch.Net\net40\Elasticsearch.Net.pdb" target="lib"/>
<file src="output\Elasticsearch.Net\net40\Elasticsearch.Net.XML" target="lib"/>

<file src="output\Elasticsearch.Net\net45\Elasticsearch.Net.dll" target="lib\net45"/>
<file src="output\Elasticsearch.Net\net45\Elasticsearch.Net.pdb" target="lib\net45"/>
<file src="output\Elasticsearch.Net\net45\Elasticsearch.Net.XML" target="lib\net45"/>

</files>
</package>
51 changes: 28 additions & 23 deletions build/NEST.nuspec
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NEST</id>
<version>1.3.0</version>
<title>NEST - Elasticsearch Client</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/nest-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>Strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Elasticsearch client, strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</description>
<dependencies>
<dependency id="Elasticsearch.Net" version="1.3.0"/>
<dependency id="Newtonsoft.Json" version="6.0.1" />
</dependencies>
<tags>elasticsearch elastic search lucene nest</tags>
</metadata>
<files>
<file src="output\Nest\Nest.dll" target="lib"/>
<file src="output\Nest\Nest.pdb" target="lib"/>
<file src="output\Nest\Nest.XML" target="lib"/>
</files>
<metadata>
<id>NEST</id>
<version>1.3.0</version>
<title>NEST - Elasticsearch Client</title>
<authors>Elasticsearch Inc. and contributors</authors>
<owners>Elasticsearch Inc.</owners>
<iconUrl>http://nest.azurewebsites.net/images/nest-nuget-icon.png</iconUrl>
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
<summary>Strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</summary>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Elasticsearch client, strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</description>
<dependencies>
<dependency id="Elasticsearch.Net" version="1.3.0"/>
<dependency id="Newtonsoft.Json" version="6.0.1" />
</dependencies>
<tags>elasticsearch elastic search lucene nest</tags>
</metadata>
<files>
<file src="output\Nest\net40\Nest.dll" target="lib"/>
<file src="output\Nest\net40\Nest.pdb" target="lib"/>
<file src="output\Nest\net40\Nest.XML" target="lib"/>

<file src="output\Nest\net45\Nest.dll" target="lib\net45"/>
<file src="output\Nest\net45\Nest.pdb" target="lib\net45"/>
<file src="output\Nest\net45\Nest.XML" target="lib\net45"/>

</files>
</package>
Loading