mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
net471 directive fixes
This commit is contained in:
parent
13ad536d9c
commit
46c36dc885
@ -75,7 +75,7 @@
|
|||||||
<PackageReference Include="YubicoDotNetClient" Version="1.2.0" />
|
<PackageReference Include="YubicoDotNetClient" Version="1.2.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net47' ">
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net471' ">
|
||||||
<PackageReference Include="Microsoft.Azure.NotificationHubs" Version="1.0.9" />
|
<PackageReference Include="Microsoft.Azure.NotificationHubs" Version="1.0.9" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#if NET47
|
#if NET471
|
||||||
using System;
|
using System;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Bit.Core.Models.Table;
|
using Bit.Core.Models.Table;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#if NET47
|
#if NET471
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.Azure.NotificationHubs;
|
using Microsoft.Azure.NotificationHubs;
|
||||||
|
@ -90,7 +90,7 @@ namespace Bit.Core.Utilities
|
|||||||
services.AddSingleton<IPushNotificationService, RelayPushNotificationService>();
|
services.AddSingleton<IPushNotificationService, RelayPushNotificationService>();
|
||||||
services.AddSingleton<IPushRegistrationService, RelayPushRegistrationService>();
|
services.AddSingleton<IPushRegistrationService, RelayPushRegistrationService>();
|
||||||
}
|
}
|
||||||
#if NET47
|
#if NET471
|
||||||
else if(!globalSettings.SelfHosted)
|
else if(!globalSettings.SelfHosted)
|
||||||
{
|
{
|
||||||
services.AddSingleton<IPushNotificationService, NotificationHubPushNotificationService>();
|
services.AddSingleton<IPushNotificationService, NotificationHubPushNotificationService>();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user