Skip to content

Commit 5111500

Browse files
author
maddieclayton
committed
change breaking change to az
1 parent 9dc8aad commit 5111500

31 files changed

+69
-70
lines changed

src/Authentication.Abstractions/AzureRmProfileProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
// ----------------------------------------------------------------------------------
1414

1515
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
16-
#if !NETSTANDARD
17-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
16+
#if NETSTANDARD
17+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
1818
#endif
1919

2020
using System;

src/Authentication.Abstractions/AzureSMProfileProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
// ----------------------------------------------------------------------------------
1414

1515
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
16-
#if !NETSTANDARD
17-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
16+
#if NETSTANDARD
17+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
1818
#endif
1919
using System;
2020
using System.Threading;

src/Authentication.Abstractions/Extensions/AzureAccountExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
using System;
1616
using System.Collections.Generic;
1717
using System.Linq;
18-
#if !NETSTANDARD
19-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
18+
#if NETSTANDARD
19+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
2020
#endif
2121

2222

src/Authentication.Abstractions/Extensions/AzureContextExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
using System;
1616
using System.Linq;
17-
#if !NETSTANDARD
18-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
17+
#if NETSTANDARD
18+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
1919
#endif
2020

2121
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions

src/Authentication.Abstractions/Interfaces/IAzureContextContainer.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@
1515
using System.Collections.Generic;
1616

1717
#if NETSTANDARD
18-
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions
19-
#else
20-
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop
18+
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core
2119
#endif
20+
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions
2221
{
2322
/// <summary>
2423
/// Storage container for all targeted environments, allowing the user to store named target configurations

src/Authentication.Abstractions/Interfaces/IClientAction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
using Microsoft.Rest;
1616
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
17-
#if !NETSTANDARD
18-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
17+
#if NETSTANDARD
18+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
1919
#endif
2020

2121
namespace Microsoft.Azure.Commands.Common.Authentication.Models

src/Authentication.Abstractions/Interfaces/IHyakClientAction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
using Hyak.Common;
1616
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
17-
#if !NETSTANDARD
18-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
17+
#if NETSTANDARD
18+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
1919
#endif
2020

2121
namespace Microsoft.Azure.Commands.Common.Authentication.Models

src/Authentication.Abstractions/Interfaces/IHyakClientFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
using Hyak.Common;
1616
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
17-
#if !NETSTANDARD
18-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
17+
#if NETSTANDARD
18+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
1919
#endif
2020

2121
namespace Microsoft.Azure.Commands.Common.Authentication

src/Authentication.Abstractions/Interfaces/IProfileProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
#if !NETSTANDARD
16-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
15+
#if NETSTANDARD
16+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
1717
#endif
1818

1919
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions

src/Authentication.ResourceManager/AzureRmProfile.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
using System.Collections.Generic;
1818
using System.Linq;
1919
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
20-
#if !NETSTANDARD
21-
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Desktop;
20+
#if NETSTANDARD
21+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
2222
#endif
2323
using Microsoft.Azure.Commands.ResourceManager.Common;
2424
using System.Xml.Serialization;

0 commit comments

Comments
 (0)