-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathElastic.Clients.Elasticsearch.csproj
36 lines (36 loc) · 1.51 KB
/
Elastic.Clients.Elasticsearch.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Elastic.Clients.Elasticsearch</PackageId>
<Title>Elastic.Clients.Elasticsearch - Official Elasticsearch .NET Client</Title>
<PackageTags>elasticsearch;elastic;client;search</PackageTags>
<Description>
This strongly-typed, client library enables working with Elasticsearch. It is the official client maintained and supported by Elastic.
</Description>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>netstandard2.0;net462;netstandard2.1;net8.0</TargetFrameworks>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>annotations</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Elastic.Transport" Version="0.5.9" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Tests" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="Tests.Domain" Key="$(ExposedPublicKey)" />
<InternalsVisibleTo Include="Benchmarks" Key="$(ExposedPublicKey)" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="CLSCompliantAttribute">
<_Parameter1>true</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>