vote up 2 vote down star

Hi,


Does anyone know of an SFTP task for msbuild? We'd like to automate our deployments to production, but for security reasons we don't allow SMB file-share access from our dev/test/build environment to production.

Right now, developers deploy code by manually uploading the files using FileZilla, over an SFTP connection. This is pretty error-prone, so we're planning to automate the SFTP upload. Though if there's some mechanism other than SFTP which would be just as secure, I'd be happy to use that instead.

I'm thinking of just using the "exec" msbuild task, and a command-line ftp client such as pscp. But if someone's built an sftp task already, that would of course be great.


Thanks,
Richard

flag

4 Answers

vote up 1 vote down

Could install WinSCP and just use the MsBuild Exec Task

I used something like the following to upload an ISO file to a server after a build.

winscp.exe sftp://root:password;@192.168.0.200:22/uploaddir/ "c:\myfile.iso"
link|flag
vote up 0 vote down

edtFTPnet/PRO offers full support for SFTP in .NET.

If you are interested in purchasing a copy we'd be happy to write an MSBuild SFTP task for you - it'd be a handy feature. Contact details on the site.

link|flag
vote up 0 vote down

Install putty and use the commandline tools to sftp your files to the server. Use pagent and keys to avoid hardcoding or typing your password repeatedly.

link|flag
vote up 0 vote down

FileZilla also supports this from the command line.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.