Skip to content

Commit a02d9ad

Browse files
committed
Fix namespaces
1 parent 9a34f8a commit a02d9ad

File tree

10 files changed

+8
-13
lines changed

10 files changed

+8
-13
lines changed

src/IntelliTect.AspNetCore.SignalR.SqlServer/IntelliTect.AspNetCore.SignalR.SqlServer.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,5 @@
1515
<ItemGroup>
1616
<EmbeddedResource Include="**/*.sql" />
1717
</ItemGroup>
18-
19-
<ItemGroup>
20-
<None Remove="Internal\SqlServer\enable-broker.sql" />
21-
</ItemGroup>
2218

2319
</Project>

src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/Messages/GroupAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal
4+
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal.Messages
55
{
66
// The size of the enum is defined by the protocol. Do not change it. If you need more than 255 items,
77
// add an additional enum.

src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/Messages/SqlServerGroupCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal
4+
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal.Messages
55
{
66
internal readonly struct SqlServerGroupCommand
77
{

src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/SqlServer/SqlInstaller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Diagnostics;
99
using System.Threading.Tasks;
1010

11-
namespace Microsoft.AspNet.SignalR.SqlServer
11+
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal
1212
{
1313
internal class SqlInstaller
1414
{

src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/SqlServer/SqlReceiver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using Microsoft.Extensions.Logging;
1414
using Microsoft.Data.SqlClient;
1515

16-
namespace Microsoft.AspNet.SignalR.SqlServer
16+
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal
1717
{
1818
internal class SqlReceiver : IDisposable
1919
{

src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/SqlServer/SqlSender.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using Microsoft.Data.SqlClient;
1414
using Microsoft.Extensions.Logging;
1515

16-
namespace Microsoft.AspNet.SignalR.SqlServer
16+
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal
1717
{
1818
internal class SqlSender
1919
{

src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/SqlServer/SqlStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using IntelliTect.AspNetCore.SignalR.SqlServer;
1111
using Microsoft.Extensions.Logging;
1212

13-
namespace Microsoft.AspNet.SignalR.SqlServer
13+
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal
1414
{
1515
internal class SqlStream : IDisposable
1616
{

src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/Util/AssemblyExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.IO;
66
using System.Reflection;
77

8-
namespace Microsoft.AspNet.SignalR
8+
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal
99
{
1010
internal static class AssemblyExtensions
1111
{

src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/Util/MemoryBufferWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using System.Threading;
1313
using System.Threading.Tasks;
1414

15-
namespace Microsoft.AspNetCore.Internal
15+
namespace IntelliTect.AspNetCore.SignalR.SqlServer.Internal
1616
{
1717
internal sealed class MemoryBufferWriter : Stream, IBufferWriter<byte>
1818
{

src/IntelliTect.AspNetCore.SignalR.SqlServer/SqlServerHubLifetimeManager.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
using System.Threading;
1111
using System.Threading.Tasks;
1212
using IntelliTect.AspNetCore.SignalR.SqlServer.Internal.Messages;
13-
using Microsoft.AspNet.SignalR.SqlServer;
1413
using Microsoft.AspNetCore.SignalR.Protocol;
1514
using IntelliTect.AspNetCore.SignalR.SqlServer.Internal;
1615
using Microsoft.Extensions.Logging;

0 commit comments

Comments
 (0)