-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAppHost.csproj
More file actions
26 lines (21 loc) · 914 Bytes
/
Copy pathAppHost.csproj
File metadata and controls
26 lines (21 loc) · 914 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
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Aspire.AppHost.Sdk" Version="9.4.1" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>b2cf7969-6d7a-49ef-b72e-988aa83f4ca7</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" />
<PackageReference Include="Aspire.Hosting.Redis" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BaristaService\BaristaService.csproj" />
<ProjectReference Include="..\ChatApp\ChatApp.csproj" />
<ProjectReference Include="..\CounterService\CounterService.csproj" />
<ProjectReference Include="..\KitchenService\KitchenService.csproj" />
<ProjectReference Include="..\ProductCatalogService\ProductCatalogService.csproj" />
</ItemGroup>
</Project>