forked from opensearch-project/opensearch-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenSearch.Net.csproj
101 lines (92 loc) · 4.8 KB
/
OpenSearch.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>OpenSearch.Net</PackageId>
<Title>OpenSearch.Net</Title>
<PackageTags>opensearch;opensearch;search;lucene;client;opensearch.client</PackageTags>
<Description>
Exposes all the OpenSearch API endpoints but leaves you in control of building the request and response bodies.
Comes with built in cluster failover/connection pooling support.
</Description>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Buffers" Version="4.6.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" />
<PackageReference Condition="'$(TargetFramework)' == 'netstandard2.0'" Include="System.Reflection.Emit" Version="4.7.0" />
<PackageReference Condition="'$(TargetFramework)' == 'netstandard2.0'" Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="OpenSearch.Client" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="OpenSearch.Net.CustomDynamicObjectResolver" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="OpenSearch.Net.DynamicCompositeResolver" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="OpenSearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullFalseNameMutateOriginal" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="OpenSearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullFalseNameMutateCamelCase" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="OpenSearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullFalseNameMutateSnakeCase" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="OpenSearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullTrueNameMutateOriginal" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="OpenSearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullTrueNameMutateCamelCase" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="OpenSearch.Net.DynamicObjectResolverAllowPrivateFalseExcludeNullTrueNameMutateSnakeCase" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="Tests" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="Tests.YamlRunner" Key="$(ExposedPublicKey)" />
</ItemGroup>
<ItemGroup>
<Compile Update="OpenSearchLowLevelClient.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>OpenSearchLowLevelClient.cs</DependentUpon>
</Compile>
<Compile Update="_Generated\OpenSearchLowLevelClient.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>OpenSearchLowLevelClient.cs</DependentUpon>
</Compile>
<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>ValueTupleFormatter.cs</LastGenOutput>
</None>
<None Update="Utf8Json\Formatters\TupleFormatter.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>TupleFormatter.cs</LastGenOutput>
</None>
<None Update="Utf8Json\Internal\UnsafeMemory.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>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>TupleFormatter.tt</DependentUpon>
</Compile>
<Compile Update="Utf8Json\Formatters\ValueTupleFormatter.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ValueTupleFormatter.tt</DependentUpon>
</Compile>
<Compile Update="Utf8Json\Internal\UnsafeMemory.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>UnsafeMemory.tt</DependentUpon>
</Compile>
</ItemGroup>
</Project>