Files
server/src/Notifications/Notifications.csproj

25 lines
787 B
XML
Raw Normal View History

2018-08-02 12:14:33 -04:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2019-01-18 17:15:49 -05:00
<Version>1.30.0</Version>
2018-08-02 12:14:33 -04:00
<TargetFramework>netcoreapp2.1</TargetFramework>
2018-08-16 13:45:31 -04:00
<RootNamespace>Bit.Notifications</RootNamespace>
<UserSecretsId>bitwarden-Notifications</UserSecretsId>
2018-08-02 12:14:33 -04:00
</PropertyGroup>
2019-03-07 17:09:29 -05:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
2018-08-02 12:14:33 -04:00
<ItemGroup>
2018-10-05 14:05:52 -04:00
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="1.0.4" />
<PackageReference Include="Microsoft.Azure.SignalR" Version="1.0.7" />
2018-08-02 12:14:33 -04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
</Project>