How to publish to AWS S3 using Visual Studio 2010

I have S3, and I want a built-in or any simple option for publishing certain static content directly to S3 through my visual studio.

Is it possible?

thank

+3
source share
1 answer

You can use the post-build task (AfterBuild) using the exec task with winscp.

winscp sftp: // root: password; @myip: myport / hostdir / myfile.zip

where myip is your amazons IP address, myport is the port, and hostdir is the location of your host.

ref: http://msdn.microsoft.com/en-us/library/x8zx72cd.aspx ref: http://winscp.net/eng/index.php

0

Source: https://habr.com/ru/post/1781959/


All Articles