From 2240442eadf7fea972b00d701d96dc8247ec7976 Mon Sep 17 00:00:00 2001 From: drieseng Date: Thu, 24 Mar 2016 10:36:40 +0100 Subject: [PATCH] Removed obsolete source file introduced by migration from Codeplex. --- src/Renci.SshNet/PasswordConnectionInfo.NET40.cs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/Renci.SshNet/PasswordConnectionInfo.NET40.cs diff --git a/src/Renci.SshNet/PasswordConnectionInfo.NET40.cs b/src/Renci.SshNet/PasswordConnectionInfo.NET40.cs deleted file mode 100644 index e9b0946a..00000000 --- a/src/Renci.SshNet/PasswordConnectionInfo.NET40.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System.Threading.Tasks; -using System; - -namespace Renci.SshNet -{ - /// - /// Provides connection information when password authentication method is used - /// - public partial class PasswordConnectionInfo - { - partial void ExecuteThread(Action action) - { - Task.Factory.StartNew(action); - } - } -}