How do you install winscp on azure function app?
hi,
https://winscp.net/eng/docs/guide_microsoft_azure_function_sftp
Any help with this would be appreciated
https://winscp.net/eng/docs/guide_microsoft_azure_function_sftp
My question is really how do you get the NuGet package to run on this storage – it doesn't have a GUI. I have tried the commandWinSCP .NET assembly is available as NuGet package with the same name.
The NuGet package includes the assembly itself and the required WinSCP executable. When installed, it adds the assembly as reference to your project and sets up WinSCP executable to be copied to project output directory, so that it can be found on run-time.
No other setup is needed, so you can start coding straight away after installation.
The NuGet package supports both Packages.config and PackageReference in project file package management formats.
Install-Package WinSCP -Version 5.17.10
through the console but it errors out saying Install-Package
is unrecognized.
Any help with this would be appreciated