Posts by Leonardo • 11 points
1 post
-
1
votes0
answers14
viewsQ: How to use using "Renci.Sshnet" in Vscode on Macos?
using System; using Renci.SshNet; namespace SSHTest { class Program { static void Main(string[] args) { SshClient cSSH = new SshClient(args[1], 22, args[2], args[3]); cSSH.Connect(); SshCommand c =…