-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathElastic.Clients.Elasticsearch.Serverless.csproj
44 lines (44 loc) · 2.04 KB
/
Elastic.Clients.Elasticsearch.Serverless.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Elastic.Clients.Elasticsearch.Serverless</PackageId>
<Title>Elastic.Clients.Elasticsearch.Serverless - Official Elasticsearch Serverless .NET Client</Title>
<PackageTags>elasticsearch;elastic;client;search</PackageTags>
<Description>
This strongly-typed, client library enables working with Elasticsearch Serverless. It is the official client maintained and supported by Elastic.
</Description>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);ELASTICSEARCH_SERVERLESS</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>netstandard2.0;net462;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>annotations</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Elastic.Transport" Version="0.4.22" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.3.44">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</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>
<Import Project="..\Elastic.Clients.Elasticsearch.Shared\Elastic.Clients.Elasticsearch.Shared.projitems" Label="Shared" />
</Project>