Skip to content

Commit

Permalink
Fix namespace of internal shared type (#27982)
Browse files Browse the repository at this point in the history
* Fix namespace of internal shared type

* tests

* Azure monitor update

* tables

* tables extensions
  • Loading branch information
JoshLove-msft authored Apr 5, 2022
1 parent bab3278 commit 60bc07d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sdk/core/Azure.Core/src/Shared/TypeBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Reflection;
using System.Runtime.Serialization;

namespace Azure.Monitor.Query
namespace Azure.Core
{
internal abstract class TypeBinder<TExchange>
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/Azure.Core/tests/TypeBinderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Runtime.Serialization;
using NUnit.Framework;

namespace Azure.Monitor.Query.Tests
namespace Azure.Core.Tests
{
public class TypeBinderTests
{
Expand Down
1 change: 1 addition & 0 deletions sdk/monitor/Azure.Monitor.Query/src/RowBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System;
using System.Collections.Generic;
using Azure.Core;
using Azure.Monitor.Query.Models;

namespace Azure.Monitor.Query
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using Azure.Monitor.Query;
using Azure.Core;

namespace Azure.Data.Tables
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
using System.Globalization;
using System.Linq;
using System.Reflection;
using Azure.Core;
using Azure.Data.Tables;
using Azure.Monitor.Query;

namespace Microsoft.Azure.WebJobs.Extensions.Tables
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
using System;
using System.Globalization;
using Azure;
using Azure.Core;
using Azure.Data.Tables;
using Azure.Monitor.Query;
using Newtonsoft.Json;

namespace Microsoft.Azure.WebJobs.Extensions.Tables
Expand Down

0 comments on commit 60bc07d

Please sign in to comment.