From 7bbb7a0ca3fb59de330e90f22dbe3b5a8eda2b49 Mon Sep 17 00:00:00 2001 From: drieseng Date: Sun, 3 May 2020 17:46:40 +0200 Subject: [PATCH 1/2] Remove CWLs. --- src/Renci.SshNet/Session.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Renci.SshNet/Session.cs b/src/Renci.SshNet/Session.cs index 058e589a..89779685 100644 --- a/src/Renci.SshNet/Session.cs +++ b/src/Renci.SshNet/Session.cs @@ -1992,8 +1992,6 @@ namespace Renci.SshNet // * a call to Disconnect() // * a call to Dispose() // * a SSH_MSG_DISCONNECT received from server - - Console.WriteLine("B"); break; } @@ -2002,7 +2000,6 @@ namespace Renci.SshNet { // connection with SSH server was closed; // break out of the message loop - Console.WriteLine("C"); break; } @@ -2010,8 +2007,6 @@ namespace Renci.SshNet message.Process(this); } - Console.WriteLine("D"); - // connection with SSH server was closed or socket was disposed RaiseError(CreateConnectionAbortedByServerException()); } From ab827c2eb1965a49accebaca6f2cdff18839df2b Mon Sep 17 00:00:00 2001 From: drieseng Date: Sun, 3 May 2020 20:15:32 +0200 Subject: [PATCH 2/2] Document support for .NET Standard 2.0. --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2eacd873..0790a2bb 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,7 @@ Private keys can be encrypted using one of the following cipher methods: * .NET Framework 3.5 * .NET Framework 4.0 (and higher) * .NET Standard 1.3 +* .NET Standard 2.0 * Silverlight 4 * Silverlight 5 * Windows Phone 7.1 @@ -179,11 +180,12 @@ using (var client = new SshClient("sftp.foo.com", "guest", "pwd")) ## Building SSH.NET -Software | net35 | net40 | netstandard1.3 | sl4 | sl5 | wp71 | wp8 | uap10.0 | ---------------------------------- | :---: | :---: | :------------: | :-: | :-: | :--: | :-: | :-----: | -Windows Phone SDK 8.0 | | | | x | x | x | x | -Visual Studio 2012 Update 5 | x | x | | x | x | x | x | -Visual Studio 2015 Update 3 | x | x | | | x | | x | x -Visual Studio 2017 | | x | x | | | | | +Software | net35 | net40 | netstandard1.3 | netstandard2.0 | sl4 | sl5 | wp71 | wp8 | uap10.0 | +--------------------------------- | :---: | :---: | :------------: | :------------: | :-: | :-: | :--: | :-: | :-----: | +Windows Phone SDK 8.0 | | | | | x | x | x | x | +Visual Studio 2012 Update 5 | x | x | | | x | x | x | x | +Visual Studio 2015 Update 3 | x | x | | | | x | | x | x +Visual Studio 2017 | x | x | x | x | | | | | +Visual Studio 2019 | x | x | x | x | | | | | [![NDepend](http://download-codeplex.sec.s-msft.com/Download?ProjectName=sshnet&DownloadId=629750)](http://ndepend.com)