1
0
mirror of https://github.com/bitwarden/server synced 2026-01-31 08:43:19 +00:00
Files
server/AppHost/AppHost.csproj
2025-12-23 09:02:18 -05:00

30 lines
1.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Aspire.AppHost.Sdk" Version="9.3.1" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>e0dba0c6-d131-43bd-9143-2260f11a14ad</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.3.1" />
<PackageReference Include="Aspire.Hosting.Azure.Storage" Version="9.3.1" />
<PackageReference Include="Aspire.Hosting.NodeJs" Version="9.3.1" />
<PackageReference Include="Aspire.Hosting.SqlServer" Version="9.3.2" />
<PackageReference Include="CommunityToolkit.Aspire.Hosting.Ngrok" Version="9.3.0" />
<PackageReference Include="CommunityToolkit.Aspire.Hosting.NodeJS.Extensions" Version="9.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\Admin\Admin.csproj" />
<ProjectReference Include="..\src\Api\Api.csproj" />
<ProjectReference Include="..\src\Billing\Billing.csproj" />
<ProjectReference Include="..\src\Identity\Identity.csproj" />
<ProjectReference Include="..\src\Notifications\Notifications.csproj" />
</ItemGroup>
</Project>