-
Notifications
You must be signed in to change notification settings - Fork 27
/
AppHost.csproj
32 lines (28 loc) · 1.53 KB
/
AppHost.csproj
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
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAspireHost>true</IsAspireHost>
<UserSecretsId>platformplatform-f817f2a1-ac57-4756-aef2-a57ca864bbd3</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\account-management\Api\AccountManagement.Api.csproj" />
<ProjectReference Include="..\account-management\WebApp\AccountManagement.WebApp.esproj" />
<ProjectReference Include="..\account-management\Workers\AccountManagement.Workers.csproj" />
<ProjectReference Include="..\AppGateway\AppGateway.csproj" />
<ProjectReference Include="..\back-office\Api\BackOffice.Api.csproj" />
<ProjectReference Include="..\back-office\WebApp\BackOffice.WebApp.esproj" />
<ProjectReference Include="..\back-office\Workers\BackOffice.Workers.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aspire.Azure.Storage.Blobs" />
<PackageReference Include="Aspire.Hosting.AppHost" />
<PackageReference Include="Aspire.Hosting.Azure.Storage" />
<PackageReference Include="Aspire.Hosting.NodeJs" />
<PackageReference Include="Aspire.Hosting.SqlServer" />
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
</ItemGroup>
</Project>