Is this by design?
I just upgraded SSH.Net (via NuGet) to the most current version.
My ListDirectory used to return SftpFile, now returns ISftpFile.
I have worked around this by casting: List listFileNames = (sftp.ListDirectory("/Outbound/").Cast()).ToList();
This works, but is the ISftpFile return a bug? Or is this the new-normal?
Thanks.
Bryan Hunt
Is this by design?
I just upgraded SSH.Net (via NuGet) to the most current version.
My ListDirectory used to return SftpFile, now returns ISftpFile.
I have worked around this by casting: List listFileNames = (sftp.ListDirectory("/Outbound/").Cast()).ToList();
This works, but is the ISftpFile return a bug? Or is this the new-normal?
Thanks.
Bryan Hunt