Skip to content

Commit d1bc20d

Browse files
committed
fix assembly description patcher in build script and Elasticsearch.Net.JsonNet's nuget description
1 parent 3734cc6 commit d1bc20d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

build/Elasticsearch.Net.JsonNET.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
1010
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
1111
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12-
<summary>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</summary>
12+
<summary>IElasticsearchSerializer implementation that allows you to use Json.NET with the lowlevel client</summary>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1414
<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>
1515
<dependencies>

build/build.fsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,9 @@ Target "Version" (fun _ ->
179179
match f.ToLowerInvariant() with
180180
| f when f = "elasticsearch.net" -> "Elasticsearch.Net - oficial low level elasticsearch client"
181181
| f when f = "nest" -> "NEST - oficial high level elasticsearch client"
182-
| f when f = "elasticsearch.net.connection.thrift" -> "Elasticsearc.Net.Connection.Thrift - Add thrift support to elasticsearch."
183-
| f when f = "elasticsearch.net.connection.httpclient" -> "Elasticsearc.Net.Connection.HttpClient - IConnection implementation that uses HttpClient (.NET 4.5 only)"
182+
| f when f = "elasticsearch.net.connection.thrift" -> "Add thrift support to elasticsearch."
183+
| f when f = "elasticsearch.net.connection.httpclient" -> "IConnection implementation that uses HttpClient (.NET 4.5 only)"
184+
| f when f = "elasticsearch.net.jsonnet" -> "IElasticsearchSerializer implementation that allows you to use Json.NET with the lowlevel client"
184185
| _ -> sprintf "%s" name
185186

186187
!! "src/**/AssemblyInfo.cs"

0 commit comments

Comments
 (0)