forked from opensearch-project/opensearch-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenSearch.Client.csproj
More file actions
58 lines (57 loc) · 2.87 KB
/
OpenSearch.Client.csproj
File metadata and controls
58 lines (57 loc) · 2.87 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>OpenSearch.Client</PackageId>
<Title>High-level OpenSearch client for .NET</Title>
<PackageTags>opensearch;opensearch;search;lucene;client;opensearch.client</PackageTags>
<Description>
Strongly typed interface to OpenSearch. Fluent and classic object initializer mappings of requests and
responses. Uses and exposes OpenSearch.Net.
</Description>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\OpenSearch.Net\OpenSearch.Net.csproj" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Tests" 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)" />
</ItemGroup>
<ItemGroup>
<Compile Update="Requests.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Requests.cs</DependentUpon>
</Compile>
<Compile Update="_Generated\Requests.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Requests.cs</DependentUpon>
</Compile>
<Compile Update="Descriptors.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Descriptors.cs</DependentUpon>
</Compile>
<Compile Update="_Generated\Descriptors.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Descriptors.cs</DependentUpon>
</Compile>
<Compile Update="OpenSearchClient.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>OpenSearchClient.cs</DependentUpon>
</Compile>
<Compile Update="_Generated\OpenSearchClient.*.cs">
<AutoGen>True</AutoGen>
<DependentUpon>OpenSearchClient.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>