-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBervProject.WebApi.Boilerplate.AppHost.csproj
More file actions
27 lines (23 loc) · 1.14 KB
/
BervProject.WebApi.Boilerplate.AppHost.csproj
File metadata and controls
27 lines (23 loc) · 1.14 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
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Aspire.AppHost.Sdk" Version="9.1.0" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAspireHost>true</IsAspireHost>
<UserSecretsId>0f1966e4-7b2b-4a28-a9b6-8198aab433ec</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.5.2" />
<PackageReference Include="Aspire.Hosting.Azure.ServiceBus" Version="13.0.0" />
<PackageReference Include="Aspire.Hosting.Azure.Storage" Version="13.0.0" />
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="9.5.2" />
<PackageReference Include="Aspire.Hosting.Redis" Version="13.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="KubernetesClient" Version="18.0.5" />
<ProjectReference Include="..\BervProject.WebApi.Boilerplate\BervProject.WebApi.Boilerplate.csproj" />
<ProjectReference Include="..\BervProject.WebApi.Boilerplate.MigrationService\BervProject.WebApi.Boilerplate.MigrationService.csproj" />
</ItemGroup>
</Project>