forked from elastic/elasticsearch-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElasticsearch.Net.csproj
104 lines (95 loc) · 4.65 KB
/
Elasticsearch.Net.csproj
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Elasticsearch.Net</PackageId>
<Title>Elasticsearch.Net</Title>
<PackageTags>elasticsearch;elastic;search;lucene;nest</PackageTags>
<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.
</Description>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>netstandard2.0;netstandard2.1;net461</TargetFrameworks>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.6.0" />
<PackageReference Include="System.Buffers" Version="4.5.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.5.1" />
<PackageReference Condition="'$(TargetFramework)' == 'netstandard2.0'" Include="System.Reflection.Emit" Version="4.3.0" />
<PackageReference Condition="'$(TargetFramework)' == 'netstandard2.0'" Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Nest" />
<InternalsVisibleTo Include="Elasticsearch.Net.CustomDynamicObjectResolver" />
<InternalsVisibleTo Include="Elasticsearch.Net.DynamicCompositeResolver" />
<InternalsVisibleTo Include="Elasticsearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullFalseNameMutateOriginal" />
<InternalsVisibleTo Include="Elasticsearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullFalseNameMutateCamelCase" />
<InternalsVisibleTo Include="Elasticsearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullFalseNameMutateSnakeCase" />
<InternalsVisibleTo Include="Elasticsearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullTrueNameMutateOriginal" />
<InternalsVisibleTo Include="Elasticsearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullTrueNameMutateCamelCase" />
<InternalsVisibleTo Include="Elasticsearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullTrueNameMutateSnakeCase" />
<InternalsVisibleTo Include="Tests" />
</ItemGroup>
<ItemGroup>
<Compile Update="ElasticLowLevelClient.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>ElasticLowLevelClient.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Update="Api\RequestParameters\RequestParameters.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Api\RequestParameters\RequestParameters.cs</DependentUpon>
</Compile>
</ItemGroup>
<!-- from Utf8Json -->
<ItemGroup>
<None Update="Utf8Json\Formatters\PrimitiveFormatter.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>PrimitiveFormatter.cs</LastGenOutput>
</None>
<None Update="Utf8Json\Formatters\ValueTupleFormatter.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Utf8Json\ValueTupleFormatter.cs</LastGenOutput>
</None>
<None Update="Utf8Json\Formatters\TupleFormatter.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Utf8Json\TupleFormatter.cs</LastGenOutput>
</None>
<None Update="Utf8Json\Internal\UnsafeMemory.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Utf8Json\UnsafeMemory.cs</LastGenOutput>
</None>
<Compile Update="Utf8Json\Formatters\PrimitiveFormatter.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>PrimitiveFormatter.tt</DependentUpon>
</Compile>
<Compile Update="Utf8Json\Formatters\TupleFormatter.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Utf8Json\TupleFormatter.tt</DependentUpon>
</Compile>
<Compile Update="Utf8Json\Formatters\ValueTupleFormatter.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Utf8Json\ValueTupleFormatter.tt</DependentUpon>
</Compile>
<Compile Update="Utf8Json\Internal\UnsafeMemory.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Utf8Json\UnsafeMemory.tt</DependentUpon>
</Compile>
</ItemGroup>
</Project>