Skip to content

Commit 24eaa2a

Browse files
author
maddieclayton
committed
fix netstandard
1 parent 5111500 commit 24eaa2a

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

src/Authentication.Abstractions/Interfaces/IAzureContextContainer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616

1717
#if NETSTANDARD
1818
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core
19-
#endif
19+
#else
2020
namespace Microsoft.Azure.Commands.Common.Authentication.Abstractions
21+
#endif
2122
{
2223
/// <summary>
2324
/// Storage container for all targeted environments, allowing the user to store named target configurations

src/Authentication.ResourceManager/AzureRmServicePrincipalKeyStore.Netcore.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// ----------------------------------------------------------------------------------
1414
using Microsoft.Azure.Commands.Common.Authentication;
1515
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
16+
#if NETSTANDARD
17+
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
18+
#endif
1619
using Microsoft.Azure.Commands.Common.Authentication.Models;
1720
using Microsoft.Azure.Commands.Common.Authentication.ResourceManager;
1821
using System;

src/Authentication.Test/LoginTests.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
using Hyak.Common;
1818
using Microsoft.Azure.Commands.Common.Authentication;
1919
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
20+
#if NETSTANDARD
21+
using Microsoft.Azure.Commands.Common.Authentication.Core;
22+
#endif
2023
using Microsoft.Azure.Commands.Common.Authentication.Factories;
2124
using Microsoft.Azure.Commands.ResourceManager.Common;
2225
using Microsoft.Azure.Internal.Subscriptions;

0 commit comments

Comments
 (0)