Moved both parts of Extensions partial class to Common namespace.

This commit is contained in:
Gert Driesen
2016-05-16 20:30:31 +02:00
parent df1211a0b1
commit d11eeb4185
5 changed files with 10 additions and 6 deletions
@@ -1,16 +1,16 @@
using System;
using System.Text;
using System.Net.Sockets;
using System.Threading;
using System.Security.Cryptography;
using System.Diagnostics;
using System.Net.Sockets;
using System.Security.Cryptography;
using System.Text;
using System.Threading;
namespace Renci.SshNet
namespace Renci.SshNet.Common
{
/// <summary>
/// Collection of different extension method specific for .NET 3.5
/// </summary>
public static partial class Extensions
internal static partial class Extensions
{
/// <summary>
/// Disposes the specified socket.
@@ -6,6 +6,7 @@ using System.Threading;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using Renci.SshNet.Channels;
using Renci.SshNet.Common;
using Renci.SshNet.Messages.Connection;
using Renci.SshNet.Tests.Common;
@@ -2,6 +2,7 @@
using System.Net;
using System.Net.Sockets;
using System.Threading;
using Renci.SshNet.Common;
namespace Renci.SshNet.Tests.Common
{
+1
View File
@@ -1,5 +1,6 @@
using System;
using System.Threading;
using Renci.SshNet.Common;
namespace Renci.SshNet
{
@@ -1,5 +1,6 @@
using System;
using System.Threading;
using Renci.SshNet.Common;
using Renci.SshNet.Messages.Authentication;
using Renci.SshNet.Messages;