Visual Studio Code – Modifying a remote file while connected to a server through SSH using .NET
I have successfully established a connection to a remote Linux server using the SSH.NET package with the following code (I am using a ShellStream because I have to use sudo su): using (var client = new SshClient(server, username, password)) {…