From 5b6080c4f5d0046a120415a5c8ab976e06799fb3 Mon Sep 17 00:00:00 2001 From: Alexandru Gal Date: Tue, 16 Nov 2021 21:46:04 +0200 Subject: [PATCH 1/2] Add DownloadFile and UploadFile to IFtpSftpClient interface. --- .../Models/Credentials/FTP/IFtpSftpClient.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Ringhel.Procesio.Action.Core/Models/Credentials/FTP/IFtpSftpClient.cs b/Ringhel.Procesio.Action.Core/Models/Credentials/FTP/IFtpSftpClient.cs index 0ab2da7..e27558b 100644 --- a/Ringhel.Procesio.Action.Core/Models/Credentials/FTP/IFtpSftpClient.cs +++ b/Ringhel.Procesio.Action.Core/Models/Credentials/FTP/IFtpSftpClient.cs @@ -8,5 +8,7 @@ public interface IFtpSftpClient Task> ListFileNamesWithinFolder(string directoryPath, bool isRecursive, string type); Task RenameFile(string folderPath, string currentName, string newName); Task DeleteFile(string folder, string fileName); + Task DownloadFile(string folder, string fileName); + Task UploadFile(FileModel file, string folder); } } From 801d92425a5f4cc0eb2019fde9e356b1d189b6e1 Mon Sep 17 00:00:00 2001 From: Alexandru Gal Date: Wed, 17 Nov 2021 18:30:49 +0200 Subject: [PATCH 2/2] Create version 1.14.1.3 --- .../Ringhel.Procesio.Action.Core.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj b/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj index 1edcf55..ee29759 100644 --- a/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj +++ b/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj @@ -7,7 +7,7 @@ Ringhel Procesio https://github.com/PROCESIO/Action-Core.git - 1.14.1.2 + 1.14.1.3 Ringhel.Procesio.Action.Core Ringhel.Procesio.Action.Core Ringhel.Procesio.Action.Core