vote up 3 vote down star
1

I'd like to upload (via ftp) a website when doing a release build in visual studio 2008. I don't want any source code files to be uploaded and it would be nice to configure which folders should get uploaded. I'm using either ASP.NET Web Applications or MVC. How do I configure VS.NET to automatically upload (and overwrite) the last deployed website?

flag

60% accept rate

4 Answers

vote up 2 vote down

You can use the Visual Studio Web Deployment Project Add In from Microsoft.

I use this with MSBuild as part of CruiseControl, its very nice, and with some of the Community Tasks for MS Build you can do *.config (or any XML file) substitutions as part of your build process.

Edit: I also see that the MSBuild Community Tasks includes an FtpUpload action. This should be exactly what you need.

link|flag
vote up 0 vote down

Or you can use nant

link|flag
vote up 1 vote down

Well, it turns out the simplest way to do this is to use the "Publish" functionality built into VS.NET.
Right click on the project and click Publish. It will build and deploy the project for you. It obviously isn't as customizable as using MSBuild or Nant but it does have some options: Publish Screen

I've used this feature before but I somehow thought it was only available for "Web Site" projects.

link|flag
vote up 0 vote down

Nant have no ftp task. Here I find, most convinient, very light, beaty solution. Strange why no ports of it to nant.

link|flag

Your Answer

Get an OpenID
or

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