-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathproject.json
74 lines (74 loc) · 2.18 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"version": "5.0.0-alpha3",
"authors": [
"Elastic and contributors"
],
"packOptions": {
"owners": [
"Elastic"
],
"projectUrl": "https://github.com/elastic/elasticsearch-net",
"licenseUrl": "https://github.com/elastic/elasticsearch-net/blob/master/license.txt",
"requireLicenseAcceptance": false,
"iconUrl": "https://raw.githubusercontent.com/elastic/elasticsearch-net/master/build/nuget-icon.png",
"summary": "Exposes all the elasticsearch API endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.",
"description": "Exposes all the elasticsearch API endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.",
"title": "Elasticsearch.NET - Official low level Elasticsearch client",
"tags": [
"elasticsearch",
"elastic",
"search",
"lucene",
"nest"
],
"repository": {
"type": "git",
"url": "https://github.com/elastic/elasticsearch-net"
},
"releaseNotes": "See https://github.com/elastic/elasticsearch-net/releases/tag/5.0.0-alpha3"
},
"copyright": "2014-2016 Elasticsearch BV",
"buildOptions": {
"warningsAsErrors": false
},
"configurations": {
"Debug": {
"buildOptions": {
"define": [
"DEBUG",
"TRACE"
]
}
},
"Release": {
"buildOptions": {
"define": [
"RELEASE",
"TRACE"
],
"optimize": true,
"keyFile": "../../build/keys/keypair.snk"
}
}
},
"dependencies": {},
"commands": {},
"frameworks": {
"netstandard1.3": {
"buildOptions": {
"define": [
"DOTNETCORE"
]
},
"dependencies": {
"NETStandard.Library": "1.6.0",
"System.Collections.Specialized": "4.0.1",
"System.Runtime.Serialization.Primitives": "4.1.1",
"Microsoft.CSharp": "4.0.1",
"System.Dynamic.Runtime": "4.0.11",
"System.Reflection.TypeExtensions": "4.1.0",
"System.ComponentModel.TypeConverter": "4.1.0"
}
}
}
}