Skip to content

Commit

Permalink
Migrate from WindowsAzure packages to newer Azure packages. Closes #182
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffputz committed Mar 1, 2020
1 parent 60da3b7 commit 88e2371
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/PopForums.AzureKit/PopForums.AzureKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version="3.1.1" />
<PackageReference Include="Microsoft.Azure.Search" Version="10.1.0" />
<PackageReference Include="Microsoft.Azure.Storage.Queue" Version="11.1.3" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="StackExchange.Redis" Version="2.0.601" />
<PackageReference Include="WindowsAzure.Storage" Version="9.3.3" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Queue;
using Microsoft.Azure.Storage;
using Microsoft.Azure.Storage.Queue;
using Newtonsoft.Json;
using PopForums.Configuration;
using PopForums.Models;
Expand Down
4 changes: 2 additions & 2 deletions src/PopForums.AzureKit/Queue/EmailQueueRepository.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Queue;
using Microsoft.Azure.Storage;
using Microsoft.Azure.Storage.Queue;
using Newtonsoft.Json;
using PopForums.Configuration;
using PopForums.Email;
Expand Down
4 changes: 2 additions & 2 deletions src/PopForums.AzureKit/Queue/SearchIndexQueueRepository.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Queue;
using Microsoft.Azure.Storage;
using Microsoft.Azure.Storage.Queue;
using Newtonsoft.Json;
using PopForums.Configuration;
using PopForums.Models;
Expand Down
2 changes: 1 addition & 1 deletion src/PopForums.Web/wwwroot/lib/PopForums/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@popworldmedia/popforums",
"version": "17.0.0-prerelease.102",
"version": "17.0.0-prerelease.104",
"description": "POP Forums client side",
"scripts": {},
"repository": {
Expand Down

0 comments on commit 88e2371

Please sign in to comment.