Skip to content

Commit b770452

Browse files
author
Hovsep Mkrtchyan
committed
Breaking everything - referencing new Azure.Common.Authorization library
1 parent 769079f commit b770452

File tree

343 files changed

+611
-610
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

343 files changed

+611
-610
lines changed

setup/azurecmdfiles.wxi

Lines changed: 20 additions & 20 deletions
Large diffs are not rendered by default.

src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
<SpecificVersion>False</SpecificVersion>
5757
<HintPath>..\..\packages\Microsoft.Azure.Common.2.0.1\lib\net45\Microsoft.Azure.Common.dll</HintPath>
5858
</Reference>
59-
<Reference Include="Microsoft.Azure.Common.Extensions, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
59+
<Reference Include="Microsoft.Azure.Common.Authorization, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6060
<SpecificVersion>False</SpecificVersion>
61-
<HintPath>..\..\packages\Microsoft.Azure.Common.Extensions.0.13.0-preview\lib\net45\Microsoft.Azure.Common.Extensions.dll</HintPath>
61+
<HintPath>..\..\packages\Microsoft.Azure.Common.Authorization.0.15.0-preview\lib\net45\Microsoft.Azure.Common.Authorization.dll</HintPath>
6262
</Reference>
6363
<Reference Include="Microsoft.Azure.Common.NetFramework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6464
<SpecificVersion>False</SpecificVersion>

src/Common/Commands.Common.Storage/WindowsAzureSubscriptionExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
using System;
1616
using System.Collections.Generic;
1717
using Microsoft.WindowsAzure.Commands.Common;
18-
using Microsoft.Azure.Common.Extensions.Models;
18+
using Microsoft.Azure.Common.Authorization.Models;
1919
using Microsoft.WindowsAzure.Commands.Common.Storage;
2020
using Microsoft.WindowsAzure.Management.Storage;
2121
using Microsoft.WindowsAzure.Storage;
22-
using Microsoft.Azure.Common.Extensions;
22+
using Microsoft.Azure.Common.Authorization;
2323

2424
namespace Microsoft.WindowsAzure.Commands.Utilities.Common
2525
{

src/Common/Commands.Common.Storage/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package id="Hyak.Common" version="1.0.1" targetFramework="net45" />
44
<package id="Microsoft.Azure.Common" version="2.0.1" targetFramework="net45" />
55
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
6-
<package id="Microsoft.Azure.Common.Extensions" version="0.13.0-preview" targetFramework="net45" />
6+
<package id="Microsoft.Azure.Common.Authorization" version="0.15.0-preview" targetFramework="net45" />
77
<package id="Microsoft.Azure.Management.Resources" version="2.12.0-preview" targetFramework="net45" />
88
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
99
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

src/Common/Commands.Common.Test/Commands.Common.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
<Reference Include="Microsoft.Azure.Common">
5555
<HintPath>..\..\packages\Microsoft.Azure.Common.2.0.1\lib\net45\Microsoft.Azure.Common.dll</HintPath>
5656
</Reference>
57-
<Reference Include="Microsoft.Azure.Common.Extensions, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
57+
<Reference Include="Microsoft.Azure.Common.Authorization, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5858
<SpecificVersion>False</SpecificVersion>
59-
<HintPath>..\..\packages\Microsoft.Azure.Common.Extensions.0.13.0-preview\lib\net45\Microsoft.Azure.Common.Extensions.dll</HintPath>
59+
<HintPath>..\..\packages\Microsoft.Azure.Common.Authorization.0.15.0-preview\lib\net45\Microsoft.Azure.Common.Authorization.dll</HintPath>
6060
</Reference>
6161
<Reference Include="Microsoft.Azure.Common.NetFramework">
6262
<HintPath>..\..\packages\Microsoft.Azure.Common.2.0.1\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>

src/Common/Commands.Common.Test/Common/AuthenticationFactoryTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
using System.Collections.Generic;
1616
using Xunit;
1717
using System;
18-
using Microsoft.Azure.Common.Extensions.Factories;
18+
using Microsoft.Azure.Common.Authorization.Factories;
1919
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
20-
using Microsoft.Azure.Common.Extensions.Authentication;
21-
using Microsoft.Azure.Common.Extensions.Models;
20+
using Microsoft.Azure.Common.Authorization.Authentication;
21+
using Microsoft.Azure.Common.Authorization.Models;
2222

2323
namespace Microsoft.WindowsAzure.Commands.Common.Test.Common
2424
{

src/Common/Commands.Common.Test/Common/ConversionUtilitiesTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
using System.Collections.Generic;
1616
using Microsoft.WindowsAzure.Commands.Utilities.Common;
1717
using Xunit;
18-
using Microsoft.Azure.Common.Extensions;
18+
using Microsoft.Azure.Common.Authorization;
1919

2020
namespace Microsoft.WindowsAzure.Commands.Common.Test
2121
{

src/Common/Commands.Common.Test/Common/Data.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
using Microsoft.WindowsAzure.Commands.ServiceManagement.Model;
2121
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2222
using Microsoft.WindowsAzure.Commands.Common;
23-
using Microsoft.Azure.Common.Extensions;
23+
using Microsoft.Azure.Common.Authorization;
2424

2525
namespace Microsoft.WindowsAzure.Commands.Test.Utilities.Common
2626
{

src/Common/Commands.Common.Test/Common/GeneralTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.IO;
1717
using Microsoft.WindowsAzure.Commands.Utilities.Common;
1818
using Xunit;
19-
using Microsoft.Azure.Common.Extensions;
19+
using Microsoft.Azure.Common.Authorization;
2020

2121
namespace Microsoft.WindowsAzure.Commands.Common.Test.Common
2222
{

src/Common/Commands.Common.Test/Common/JsonUtilitiesTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
using Newtonsoft.Json;
2020
using Newtonsoft.Json.Linq;
2121
using Xunit;
22-
using Microsoft.Azure.Common.Extensions;
22+
using Microsoft.Azure.Common.Authorization;
2323

2424
namespace Microsoft.WindowsAzure.Commands.Common.Test.Common
2525
{

0 commit comments

Comments
 (0)