Skip to content

Commit d267f56

Browse files
committed
Merge branch 'dev' into resourcemanager-api20180501
2 parents 8b9372a + b1813ad commit d267f56

Some content is hidden

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

42 files changed

+192
-26
lines changed

src/Authentication.Abstractions/AzureRmProfileProvider.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
// ----------------------------------------------------------------------------------
1414

1515
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
16+
#if NETSTANDARD
17+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
18+
#endif
19+
1620
using System;
1721
using System.Threading;
1822

src/Authentication.Abstractions/AzureSMProfileProvider.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// ----------------------------------------------------------------------------------
1414

1515
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
16+
#if NETSTANDARD
17+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
18+
#endif
1619
using System;
1720
using System.Threading;
1821

src/Authentication.Abstractions/Extensions/AzureAccountExtensions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
using System;
1616
using System.Collections.Generic;
1717
using System.Linq;
18+
#if NETSTANDARD
19+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
20+
#endif
21+
1822

1923
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions
2024
{

src/Authentication.Abstractions/Extensions/AzureContextExtensions.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
using System;
1616
using System.Linq;
17+
#if NETSTANDARD
18+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
19+
#endif
1720

1821
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions
1922
{

src/Authentication.Abstractions/Interfaces/IAzureContextContainer.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414

1515
using System.Collections.Generic;
1616

17+
#if NETSTANDARD
18+
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core
19+
#else
1720
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions
21+
#endif
1822
{
1923
/// <summary>
2024
/// Storage container for all targeted environments, allowing the user to store named target configurations

src/Authentication.Abstractions/Interfaces/IClientAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
using Microsoft.Rest;
1616
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
17+
#if NETSTANDARD
18+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
19+
#endif
1720

1821
namespace Microsoft.Azure.Commands.Common.Authentication.Models
1922
{

src/Authentication.Abstractions/Interfaces/IHyakClientAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
using Hyak.Common;
1616
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
17+
#if NETSTANDARD
18+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
19+
#endif
1720

1821
namespace Microsoft.Azure.Commands.Common.Authentication.Models
1922
{

src/Authentication.Abstractions/Interfaces/IHyakClientFactory.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
using Hyak.Common;
1616
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
17+
#if NETSTANDARD
18+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
19+
#endif
1720

1821
namespace Microsoft.Azure.Commands.Common.Authentication
1922
{

src/Authentication.Abstractions/Interfaces/IProfileProvider.cs

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

15+
#if NETSTANDARD
16+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
17+
#endif
18+
1519
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions
1620
{
1721
public interface IProfileProvider

src/Authentication.ResourceManager/AzureRmProfile.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
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.Core;
22+
#endif
2023
using Microsoft.Azure.Commands.ResourceManager.Common;
2124
using System.Xml.Serialization;
2225
using Microsoft.Azure.Commands.ResourceManager.Common.Serialization;

0 commit comments

Comments
 (0)