mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
20 lines
690 B
XML
20 lines
690 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<UserSecretsId>bitwarden-Notifications</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Notifications' " />
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Notifications-SelfHost' " />
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="8.0.7" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version="8.0.7" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
<ProjectReference Include="..\SharedWeb\SharedWeb.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|