mirror of
https://github.com/bitwarden/server.git
synced 2025-04-18 19:48:12 -05:00
22 lines
772 B
XML
22 lines
772 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<Version>1.23.0</Version>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<RootNamespace>Bit.Notifications</RootNamespace>
|
|
<UserSecretsId>bitwarden-Notifications</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" Version="2.1.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="1.0.3" />
|
|
<PackageReference Include="Microsoft.Azure.SignalR" Version="1.0.0-preview1-10015" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|