Sfoglia il codice sorgente

Remove obsolete source files.

Gert Driesen 9 anni fa
parent
commit
6f27e5f037

+ 0 - 16
src/Renci.SshNet.NET35/KeyboardInteractiveAuthenticationMethod.NET35.cs

@@ -1,16 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading;
-
-namespace Renci.SshNet
-{
-    public partial class KeyboardInteractiveAuthenticationMethod
-    {
-        partial void ExecuteThread(Action action)
-        {
-            ThreadPool.QueueUserWorkItem((o) => { action(); });
-        }
-    }
-}

+ 0 - 16
src/Renci.SshNet.NET35/KeyboardInteractiveConnectionInfo.NET35.cs

@@ -1,16 +0,0 @@
-using System;
-using System.Threading;
-
-namespace Renci.SshNet
-{
-    /// <summary>
-    /// Provides connection information when keyboard interactive authentication method is used
-    /// </summary>
-    public partial class KeyboardInteractiveConnectionInfo
-    {
-        partial void ExecuteThread(Action action)
-        {
-            ThreadPool.QueueUserWorkItem((o) => { action(); });
-        }
-    }
-}

+ 0 - 16
src/Renci.SshNet.NET35/PasswordAuthenticationMethod.NET35.cs

@@ -1,16 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading;
-
-namespace Renci.SshNet
-{
-    public partial class PasswordAuthenticationMethod 
-    {
-        partial void ExecuteThread(Action action)
-        {
-            ThreadPool.QueueUserWorkItem((o) => { action(); });
-        }
-    }
-}

+ 0 - 16
src/Renci.SshNet.NET35/PasswordConnectionInfo.NET35.cs

@@ -1,16 +0,0 @@
-using System;
-using System.Threading;
-
-namespace Renci.SshNet
-{
-    /// <summary>
-    /// Provides connection information when password authentication method is used
-    /// </summary>
-    public partial class PasswordConnectionInfo
-    {
-        partial void ExecuteThread(Action action)
-        {
-            ThreadPool.QueueUserWorkItem((o) => { action(); });
-        }
-    }
-}