-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathaspire.csproj
More file actions
29 lines (24 loc) · 1.15 KB
/
aspire.csproj
File metadata and controls
29 lines (24 loc) · 1.15 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
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Aspire.AppHost.Sdk" Version="9.4.0"/>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>72f50f33-6fb9-4d08-bff3-39568fe370b3</UserSecretsId>
<IsTestProject>false</IsTestProject>
<RootNamespace>Elastic.Documentation.Aspire</RootNamespace>
<NoWarn>IDE0350;IDE0060</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nullean.Argh" />
<PackageReference Include="Aspire.Hosting.AppHost"/>
<PackageReference Include="Elastic.Aspire.Hosting.Elasticsearch"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\api\Elastic.Documentation.Api.App\Elastic.Documentation.Api.App.csproj" />
<ProjectReference Include="..\src\api\Elastic.Documentation.Mcp.Remote\Elastic.Documentation.Mcp.Remote.csproj" />
<ProjectReference Include="..\src\tooling\docs-builder\docs-builder.csproj"/>
<ProjectReference Include="..\src\Elastic.Documentation\Elastic.Documentation.csproj" IsAspireProjectResource="false" />
</ItemGroup>
</Project>