-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathElastic.Documentation.Api.csproj
More file actions
42 lines (42 loc) · 2.22 KB
/
Elastic.Documentation.Api.csproj
File metadata and controls
42 lines (42 loc) · 2.22 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>docs-builder-api</AssemblyName>
<RootNamespace>Elastic.Documentation.Api</RootNamespace>
<EnableRequestDelegateGenerator>true</EnableRequestDelegateGenerator>
<InterceptorsPreviewNamespaces>$(InterceptorsPreviewNamespaces);Microsoft.AspNetCore.Http.Generated</InterceptorsPreviewNamespaces>
<InvariantGlobalization>true</InvariantGlobalization>
<IsPublishable>true</IsPublishable>
<PublishAot>true</PublishAot>
<PublishTrimmed>true</PublishTrimmed>
<TrimmerSingleWarn>false</TrimmerSingleWarn>
<EnableSdkContainerSupport>true</EnableSdkContainerSupport>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Elastic.Documentation.ServiceDefaults\Elastic.Documentation.ServiceDefaults.csproj" />
<ProjectReference Include="..\..\Elastic.Documentation\Elastic.Documentation.csproj" />
<ProjectReference Include="..\..\Elastic.Documentation.Configuration\Elastic.Documentation.Configuration.csproj" />
<ProjectReference Include="..\..\services\search\Elastic.Documentation.Search\Elastic.Documentation.Search.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.DynamoDBv2" />
<PackageReference Include="Elastic.Clients.Elasticsearch" />
<PackageReference Include="NetEscapades.EnumGenerators" />
<PackageReference Include="Elastic.OpenTelemetry" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" />
<PackageReference Include="Microsoft.Extensions.Telemetry.Abstractions" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Elastic.Documentation.Api.Tests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Elastic.Documentation.Api.IntegrationTests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>