Skip to content

Commit a5db253

Browse files
committed
Upgrade to Lib.Net.Http.WebPush 2.0.0
1 parent ebeb0ec commit a5db253

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Demo.AspNetCore.PushNotifications.Services.Abstractions/Demo.AspNetCore.PushNotifications.Services.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<TargetFramework>netcoreapp2.2</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Lib.Net.Http.WebPush" Version="1.5.0" />
6+
<PackageReference Include="Lib.Net.Http.WebPush" Version="2.0.0" />
77
</ItemGroup>
88
</Project>

Demo.AspNetCore.PushNotifications.Services.PushService/Demo.AspNetCore.PushNotifications.Services.PushService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<LangVersion>latest</LangVersion>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageReference Include="Lib.Net.Http.WebPush" Version="1.5.0" />
7+
<PackageReference Include="Lib.Net.Http.WebPush" Version="2.0.0" />
88
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="2.2.0" />
99
<PackageReference Include="Microsoft.Extensions.Http" Version="2.2.0" />
1010
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.2.0" />

Demo.AspNetCore.PushNotifications.Services.PushService/PushServicePushNotificationService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ internal class PushServicePushNotificationService : IPushNotificationService
1818

1919
public string PublicKey { get { return _options.PublicKey; } }
2020

21-
public PushServicePushNotificationService(IOptions<PushNotificationServiceOptions> optionsAccessor, IVapidTokenCache vapidTokenCache, PushServiceClient pushClient, ILogger<PushServicePushNotificationService> logger)
21+
public PushServicePushNotificationService(IOptions<PushNotificationServiceOptions> optionsAccessor, PushServiceClient pushClient, IVapidTokenCache vapidTokenCache, ILogger<PushServicePushNotificationService> logger)
2222
{
2323
_options = optionsAccessor.Value;
2424

Demo.AspNetCore.PushNotifications.Services.Sqlite/Demo.AspNetCore.PushNotifications.Services.Sqlite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netcoreapp2.2</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Lib.Net.Http.WebPush" Version="1.5.0" />
6+
<PackageReference Include="Lib.Net.Http.WebPush" Version="2.0.0" />
77
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
88
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.0" />
99
</ItemGroup>

Demo.AspNetCore.PushNotifications/Demo.AspNetCore.PushNotifications.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netcoreapp2.2</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Lib.Net.Http.WebPush" Version="1.5.0" />
6+
<PackageReference Include="Lib.Net.Http.WebPush" Version="2.0.0" />
77
<PackageReference Include="Microsoft.AspNetCore.App" />
88
</ItemGroup>
99
<ItemGroup>

0 commit comments

Comments
 (0)