-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathAppHost.csproj
More file actions
30 lines (26 loc) · 1.34 KB
/
AppHost.csproj
File metadata and controls
30 lines (26 loc) · 1.34 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
<Project Sdk="Aspire.AppHost.Sdk/13.1.2">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>platformplatform-f817f2a1-ac57-4756-aef2-a57ca864bbd3</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\account\Api\Account.Api.csproj"/>
<ProjectReference Include="..\account\Workers\Account.Workers.csproj"/>
<ProjectReference Include="..\AppGateway\AppGateway.csproj"/>
<ProjectReference Include="..\back-office\Api\BackOffice.Api.csproj"/>
<ProjectReference Include="..\back-office\Workers\BackOffice.Workers.csproj"/>
<ProjectReference Include="..\main\Api\Main.Api.csproj"/>
<ProjectReference Include="..\main\Workers\Main.Workers.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aspire.Azure.Storage.Blobs"/>
<PackageReference Include="Aspire.Hosting.Azure.Storage"/>
<PackageReference Include="Aspire.Hosting.JavaScript"/>
<PackageReference Include="Aspire.Hosting.PostgreSQL"/>
<PackageReference Include="Microsoft.Extensions.Configuration"/>
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets"/>
</ItemGroup>
</Project>