Rename DataProtection.Azure.Blob to DataProtection.Azure.Storage (#180)
This commit is contained in:
parent
00d593f1f2
commit
7a3fd8af33
|
|
@ -34,7 +34,7 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNetCore.DataPr
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNetCore.DataProtection.Redis", "src\Microsoft.AspNetCore.DataProtection.Redis\Microsoft.AspNetCore.DataProtection.Redis.xproj", "{0508ADB0-9D2E-4506-9AA3-C15D7BEAE7C9}"
|
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNetCore.DataProtection.Redis", "src\Microsoft.AspNetCore.DataProtection.Redis\Microsoft.AspNetCore.DataProtection.Redis.xproj", "{0508ADB0-9D2E-4506-9AA3-C15D7BEAE7C9}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNetCore.DataProtection.Azure.Blob", "src\Microsoft.AspNetCore.DataProtection.Azure.Blob\Microsoft.AspNetCore.DataProtection.Azure.Blob.xproj", "{CC799B57-81E2-4F45-8A32-0D5F49753C3F}"
|
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNetCore.DataProtection.Azure.Storage", "src\Microsoft.AspNetCore.DataProtection.Azure.Storage\Microsoft.AspNetCore.DataProtection.Azure.Storage.xproj", "{CC799B57-81E2-4F45-8A32-0D5F49753C3F}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{5A3A5DE3-49AD-431C-971D-B01B62D94AE2}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{5A3A5DE3-49AD-431C-971D-B01B62D94AE2}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
@ -48,7 +48,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
||||||
NuGet.config = NuGet.config
|
NuGet.config = NuGet.config
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNetCore.DataProtection.Azure.Blob.Test", "test\Microsoft.AspNetCore.DataProtection.Azure.Blob.Test\Microsoft.AspNetCore.DataProtection.Azure.Blob.Test.xproj", "{8C41240E-48F8-402F-9388-74CFE27F4D76}"
|
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNetCore.DataProtection.Azure.Storage.Test", "test\Microsoft.AspNetCore.DataProtection.Azure.Storage.Test\Microsoft.AspNetCore.DataProtection.Azure.Storage.Test.xproj", "{8C41240E-48F8-402F-9388-74CFE27F4D76}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Redis", "samples\Redis\Redis.xproj", "{24AAEC96-DF46-4F61-B2FF-3D5E056685D9}"
|
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Redis", "samples\Redis\Redis.xproj", "{24AAEC96-DF46-4F61-B2FF-3D5E056685D9}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
"Microsoft.AspNetCore.Cryptography.KeyDerivation": { },
|
"Microsoft.AspNetCore.Cryptography.KeyDerivation": { },
|
||||||
"Microsoft.AspNetCore.DataProtection": { },
|
"Microsoft.AspNetCore.DataProtection": { },
|
||||||
"Microsoft.AspNetCore.DataProtection.Abstractions": { },
|
"Microsoft.AspNetCore.DataProtection.Abstractions": { },
|
||||||
"Microsoft.AspNetCore.DataProtection.Azure.Blob": { },
|
"Microsoft.AspNetCore.DataProtection.Azure.Storage": { },
|
||||||
"Microsoft.AspNetCore.DataProtection.Extensions": { },
|
"Microsoft.AspNetCore.DataProtection.Extensions": { },
|
||||||
"Microsoft.AspNetCore.DataProtection.Redis": { },
|
"Microsoft.AspNetCore.DataProtection.Redis": { },
|
||||||
"Microsoft.AspNetCore.DataProtection.SystemWeb": { }
|
"Microsoft.AspNetCore.DataProtection.SystemWeb": { }
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ using Microsoft.AspNetCore.DataProtection;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Microsoft.WindowsAzure.Storage;
|
using Microsoft.WindowsAzure.Storage;
|
||||||
using Microsoft.AspNetCore.DataProtection.Azure.Blob;
|
|
||||||
|
|
||||||
namespace AzureBlob
|
namespace AzureBlob
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
|
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
|
||||||
"Microsoft.AspNetCore.DataProtection.Azure.Blob": "0.1.0-*",
|
"Microsoft.AspNetCore.DataProtection.Azure.Storage": "1.0.0-*",
|
||||||
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
|
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
|
||||||
"Microsoft.Extensions.Logging": "1.1.0-*",
|
"Microsoft.Extensions.Logging": "1.1.0-*",
|
||||||
"Microsoft.Extensions.Logging.Console": "1.1.0-*",
|
"Microsoft.Extensions.Logging.Console": "1.1.0-*",
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ using Microsoft.AspNetCore.DataProtection.Repositories;
|
||||||
using Microsoft.WindowsAzure.Storage;
|
using Microsoft.WindowsAzure.Storage;
|
||||||
using Microsoft.WindowsAzure.Storage.Blob;
|
using Microsoft.WindowsAzure.Storage.Blob;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.DataProtection.Azure.Blob
|
namespace Microsoft.AspNetCore.DataProtection.Azure.Storage
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An <see cref="IXmlRepository"/> which is backed by Azure Blob Storage.
|
/// An <see cref="IXmlRepository"/> which is backed by Azure Blob Storage.
|
||||||
|
|
@ -2,13 +2,14 @@
|
||||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
using Microsoft.AspNetCore.DataProtection.Azure.Storage;
|
||||||
using Microsoft.AspNetCore.DataProtection.Repositories;
|
using Microsoft.AspNetCore.DataProtection.Repositories;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.WindowsAzure.Storage;
|
using Microsoft.WindowsAzure.Storage;
|
||||||
using Microsoft.WindowsAzure.Storage.Auth;
|
using Microsoft.WindowsAzure.Storage.Auth;
|
||||||
using Microsoft.WindowsAzure.Storage.Blob;
|
using Microsoft.WindowsAzure.Storage.Blob;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.DataProtection.Azure.Blob
|
namespace Microsoft.AspNetCore.DataProtection
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains Azure-specific extension methods for modifying a
|
/// Contains Azure-specific extension methods for modifying a
|
||||||
|
|
@ -7,11 +7,10 @@
|
||||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
|
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>cc799b57-81e2-4f45-8a32-0d5f49753c3f</ProjectGuid>
|
<ProjectGuid>cc799b57-81e2-4f45-8a32-0d5f49753c3f</ProjectGuid>
|
||||||
<RootNamespace>Microsoft.AspNetCore.DataProtection.Azure</RootNamespace>
|
<RootNamespace>Microsoft.AspNetCore.DataProtection.Azure.Storage</RootNamespace>
|
||||||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
|
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
|
||||||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
|
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<SchemaVersion>2.0</SchemaVersion>
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "0.1.0-*",
|
"version": "1.0.0-*",
|
||||||
"description": "Microsoft Azure Blob storrage support as key store.",
|
"description": "Microsoft Azure Blob storrage support as key store.",
|
||||||
"packOptions": {
|
"packOptions": {
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
|
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
|
||||||
"WindowsAzure.Storage": "7.0.2-preview"
|
"WindowsAzure.Storage": "7.2.1"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {},
|
"net451": {},
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
using System;
|
using System;
|
||||||
using StackExchange.Redis;
|
using StackExchange.Redis;
|
||||||
using Microsoft.AspNetCore.DataProtection.Repositories;
|
using Microsoft.AspNetCore.DataProtection.Repositories;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
|
||||||
using Microsoft.Extensions.DependencyInjection.Extensions;
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.DataProtection
|
namespace Microsoft.AspNetCore.DataProtection
|
||||||
|
|
|
||||||
|
|
@ -6,13 +6,13 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Xml.Linq;
|
using System.Xml.Linq;
|
||||||
using Microsoft.AspNetCore.DataProtection.Azure.Blob;
|
using Microsoft.AspNetCore.DataProtection.Azure.Storage;
|
||||||
using Microsoft.WindowsAzure.Storage;
|
using Microsoft.WindowsAzure.Storage;
|
||||||
using Microsoft.WindowsAzure.Storage.Blob;
|
using Microsoft.WindowsAzure.Storage.Blob;
|
||||||
using Moq;
|
using Moq;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.DataProtection.Azure.Test
|
namespace Microsoft.AspNetCore.DataProtection.Azure.Storage.Test
|
||||||
{
|
{
|
||||||
public class AzureBlobXmlRepositoryTests
|
public class AzureBlobXmlRepositoryTests
|
||||||
{
|
{
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
|
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>8c41240e-48f8-402f-9388-74cfe27f4d76</ProjectGuid>
|
<ProjectGuid>8c41240e-48f8-402f-9388-74cfe27f4d76</ProjectGuid>
|
||||||
<RootNamespace>Microsoft.AspNetCore.DataProtection.Azure.Test</RootNamespace>
|
<RootNamespace>Microsoft.AspNetCore.DataProtection.Azure.Storage.Test</RootNamespace>
|
||||||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
|
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
|
||||||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
|
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dotnet-test-xunit": "2.2.0-*",
|
"dotnet-test-xunit": "2.2.0-*",
|
||||||
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
|
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
|
||||||
"Microsoft.AspNetCore.DataProtection.Azure.Blob": "0.1.0-*",
|
"Microsoft.AspNetCore.DataProtection.Azure.Storage": "1.0.0-*",
|
||||||
"Microsoft.AspNetCore.Testing": "1.1.0-*",
|
"Microsoft.AspNetCore.Testing": "1.1.0-*",
|
||||||
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
|
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
|
||||||
"xunit": "2.2.0-*",
|
"xunit": "2.2.0-*",
|
||||||
Loading…
Reference in New Issue