Skip to content

Commit

Permalink
tried to fix the build failures after adjusted namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
kerryjiang committed Apr 9, 2024
1 parent eea8d9d commit 7ecab9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 24 deletions.
18 changes: 1 addition & 17 deletions test/SuperSocket.Tests/ClientTest.cs
Original file line number Diff line number Diff line change
@@ -1,37 +1,21 @@
using System;
using System.Linq;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Buffers;
using System.Threading.Tasks;
using System.Reflection;
using System.Collections.Generic;
using SuperSocket;
using SuperSocket.Command;
using SuperSocket.ProtoBase;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Xunit;
using Xunit.Abstractions;
using SuperSocket.Client;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Console;
using System.Net.Security;
using System.Security.Authentication;
using System.Security.Cryptography.X509Certificates;
using SuperSocket.Server.Host;
using SuperSocket.Tests.Command;
using SuperSocket.Connection;
using SuperSocket.Server;
using SuperSocket.Server.Abstractions;
using SuperSocket.Server.Abstractions.Session;
using System.Threading;
using Microsoft.Extensions.Logging.Abstractions;
using SuperSocket.WebSocket;
using SuperSocket.Kestrel;
using Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets;

namespace SuperSocket.Tests
{
Expand Down
2 changes: 1 addition & 1 deletion test/SuperSocket.Tests/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
using System.Threading.Tasks;
using System.Linq;
using System.Text;
using SuperSocket;
using SuperSocket.Server;
using SuperSocket.Server.Host;
using SuperSocket.Server.Abstractions.Session;
using SuperSocket.Command;
using SuperSocket.ProtoBase;
Expand Down
7 changes: 1 addition & 6 deletions test/SuperSocket.Tests/SessionContainerTest.cs
Original file line number Diff line number Diff line change
@@ -1,23 +1,18 @@
using System;
using System.Linq;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Buffers;
using System.Threading.Tasks;
using System.Reflection;
using System.Collections.Generic;
using SuperSocket;
using SuperSocket.Command;
using SuperSocket.ProtoBase;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Xunit;
using Xunit.Abstractions;
using System.Threading;
using SuperSocket.Connection;
using SuperSocket.Server.Abstractions;
using SuperSocket.Server;
using SuperSocket.Server.Abstractions.Session;
using SuperSocket.Server.Host;

Expand Down
1 change: 1 addition & 0 deletions test/SuperSocket.Tests/UdpHostConfigurator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using SuperSocket.Connection;
using SuperSocket.Server;
using SuperSocket.Server.Abstractions;
using SuperSocket.Server.Abstractions.Host;
using SuperSocket.Client;
Expand Down

0 comments on commit 7ecab9e

Please sign in to comment.