You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Neon.SSH will cause a missing method exception when used with applications that load SSH.NET versions 2023.0.0 or newer due to PR 794. The current NuGet package suggests that it will work with any version 2020.0.2 or newer.
I found this issue using Neon.SSH in a Visual Studio Extension in which it appears MAUI workloads load the latest version of SSH.NET 2024.2.0
Update SSH.NET NuGet dependency to avoid missing method exception.
Convert SshCommand.ExitStatus to 0 on a null result. This is equivalent to the result of the previous SSH.NET implementation.
Neon.SSH will cause a missing method exception when used with applications that load SSH.NET versions 2023.0.0 or newer due to PR 794. The current NuGet package suggests that it will work with any version 2020.0.2 or newer.
I found this issue using Neon.SSH in a Visual Studio Extension in which it appears MAUI workloads load the latest version of SSH.NET 2024.2.0
This will occur when attempting to use Neon.SSH.SshCredentials.FromPrivateKey as the constructor on line 77 has changed.
In SSH.NET the constructor for
Renci.SshNet.PrivateKeyAuthenticationMethod
stopped taking aPrivateKeyFile
array in favor of the newIPrivateKeySource
interface.The text was updated successfully, but these errors were encountered: