Skip to content

Commit

Permalink
Remove JonGallant from namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
jongio committed Jun 20, 2020
1 parent c873a12 commit ac5e1ec
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dotnet add package Microsoft.Azure.Management.ApplicationInsights --version 0.2.
Use `AzureIdentityCredentialAdapter` in place of `ServiceClientCredential`:

```csharp
using JonGallant.Azure.Identity.Extensions;
using Azure.Identity.Extensions;
using Microsoft.Azure.Management.ApplicationInsights.Management;

var appInsightsClient = new ApplicationInsightsManagementClient(new AzureIdentityCredentialAdapter());
Expand All @@ -45,7 +45,7 @@ dotnet add package Microsoft.Azure.Management.Fluent --version 1.30.0
Use `AzureIdentityFluentCredentialAdapter` in place of `AzureCredentials`:

```csharp
using JonGallant.Azure.Identity.Extensions;
using Azure.Identity.Extensions;
using Microsoft.Azure.Management.ResourceManager.Fluent;

var creds = new AzureIdentityFluentCredentialAdapter(tenantId, AzureEnvironment.AzureGlobalCloud);
Expand All @@ -67,7 +67,7 @@ dotnet add package Microsoft.Azure.ServiceBus --version 4.1.1
```

```csharp
using JonGallant.Azure.Identity.Extensions;
using Azure.Identity.Extensions;
using Microsoft.Azure.ServiceBus;

var client = new TopicClient("sbendpoint", "entitypath", new AzureIdentityServiceBusCredentialAdapter());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\JonGallant.Azure.Identity.Extensions\JonGallant.Azure.Identity.Extensions.csproj" />
<ProjectReference Include="..\Azure.Identity.Extensions\Azure.Identity.Extensions.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using System;
using Microsoft.Azure.Management.ResourceManager.Fluent;
using DotNetEnv;
using JonGallant.Azure.Identity.Extensions;
using Azure.Identity.Extensions;
using Xunit;
using System.Threading.Tasks;
using static DotNetEnv.Env;

namespace JonGallant.Azure.Identity.Extensions.Tests.Fluent
namespace Azure.Identity.Extensions.Tests.Fluent
{
public class ResourceGroupTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using Xunit;

namespace JonGallant.Azure.Identity.Extensions.Tests.Mgmt
namespace Azure.Identity.Extensions.Tests.Mgmt
{
public class AppInsightsTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using Xunit;

namespace JonGallant.Azure.Identity.Extensions.Tests.Mgmt
namespace Azure.Identity.Extensions.Tests.Mgmt
{
public class CosmosDBTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Xunit;
using Azure.Identity;

namespace JonGallant.Azure.Identity.Extensions.Tests.Mgmt
namespace Azure.Identity.Extensions.Tests.Mgmt
{
public class InteractiveBrowserTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using Xunit;

namespace JonGallant.Azure.Identity.Extensions.Tests.Mgmt
namespace Azure.Identity.Extensions.Tests.Mgmt
{
public class ResourceGroupTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Xunit;

namespace JonGallant.Azure.Identity.Extensions.Tests.Mgmt
namespace Azure.Identity.Extensions.Tests.Mgmt
{
public class StorageTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Threading.Tasks;
using Xunit;

namespace JonGallant.Azure.Identity.Extensions.Tests.ServiceBus
namespace Azure.Identity.Extensions.Tests.ServiceBus
{
public class ServiceBusTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageId>JonGallant.Azure.Identity.Extensions</PackageId>
<PackageId>Azure.Identity.Extensions</PackageId>
<Description>A library that extends the base Azure.Identity functionality.</Description>
<Version>0.0.5-preview</Version>
<Authors>Jon Gallant</Authors>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.Rest;
using Azure.Core;

namespace JonGallant.Azure.Identity.Extensions
namespace Azure.Identity.Extensions
{
public class AzureIdentityCredentialAdapter : TokenCredentials
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
using Azure.Identity;


namespace JonGallant.Azure.Identity.Extensions
namespace Azure.Identity.Extensions
{
public class AzureIdentityFluentCredentialAdapter : AzureCredentials
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Azure.Identity;


namespace JonGallant.Azure.Identity.Extensions
namespace Azure.Identity.Extensions
{
public class AzureIdentityServiceBusCredentialAdapter : ITokenProvider
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Azure.Identity;


namespace JonGallant.Azure.Identity.Extensions
namespace Azure.Identity.Extensions
{
public class AzureIdentityTokenProvider : ITokenProvider
{
Expand Down

0 comments on commit ac5e1ec

Please sign in to comment.