Files
server/src/Notifications/Notifications.csproj

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
826 B
XML
Raw Normal View History

2018-08-02 12:14:33 -04:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2018-08-16 13:45:31 -04:00
<UserSecretsId>bitwarden-Notifications</UserSecretsId>
2018-08-02 12:14:33 -04:00
</PropertyGroup>
2023-06-08 13:21:03 -04:00
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Notifications' " />
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Notifications-SelfHost' " />
2018-08-02 12:14:33 -04:00
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="10.0.2" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version="10.0.2" />
2018-08-02 12:14:33 -04:00
</ItemGroup>
<ItemGroup Label="Pinned transitive dependencies">
<PackageReference Include="MessagePack" Version="2.5.192" />
</ItemGroup>
2018-08-02 12:14:33 -04:00
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
<ProjectReference Include="..\SharedWeb\SharedWeb.csproj" />
2018-08-02 12:14:33 -04:00
</ItemGroup>
</Project>