-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathElastic.Documentation.Mcp.Remote.csproj
More file actions
42 lines (34 loc) · 1.62 KB
/
Elastic.Documentation.Mcp.Remote.csproj
File metadata and controls
42 lines (34 loc) · 1.62 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>
<InvariantGlobalization>true</InvariantGlobalization>
<AssemblyName>bootstrap</AssemblyName>
<IsPublishable>true</IsPublishable>
<PublishAot>true</PublishAot>
<PublishTrimmed>true</PublishTrimmed>
<EnableSdkContainerSupport>true</EnableSdkContainerSupport>
<TrimmerSingleWarn>false</TrimmerSingleWarn>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<RootNamespace>Elastic.Documentation.Mcp.Remote</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Elastic.Documentation.ServiceDefaults\Elastic.Documentation.ServiceDefaults.csproj" />
<ProjectReference Include="..\..\services\search\Elastic.Documentation.Search\Elastic.Documentation.Search.csproj" />
<ProjectReference Include="..\..\services\Elastic.Documentation.Assembler\Elastic.Documentation.Assembler.csproj" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Mcp.Remote.IntegrationTests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Tokens" />
<PackageReference Include="ModelContextProtocol.AspNetCore" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
<PackageReference Include="Elastic.OpenTelemetry" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" />
</ItemGroup>
</Project>