-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSharpCoreDB.AppHost.csproj
More file actions
29 lines (24 loc) · 966 Bytes
/
SharpCoreDB.AppHost.csproj
File metadata and controls
29 lines (24 loc) · 966 Bytes
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 Name="Aspire.AppHost.Sdk" Version="9.1.0" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectCapability Include="Aspire" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.1.0" />
<PackageReference Include="KubernetesClient" Version="19.0.2" />
</ItemGroup>
<ItemGroup>
<!-- Reference to server project -->
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" />
<ProjectReference Include="..\SharpCoreDB.Server\SharpCoreDB.Server.csproj" />
</ItemGroup>
</Project>