vote up 0 vote down star
1

How do I deploy/publish a Web Application with CruiseControl.NET & MSBuild? I am new to CCNET and I able to get it to get the latest source from SVN and Build with MSBuild 3.5. How do I get the site to publish to another (DEVELOPMENT) server? Thanks for any pointers/examples.

Cheers, ~ck

flag

40% accept rate

2 Answers

vote up 0 vote down

I typically use the Build Publisher task to deploy files onto remote servers. You could also write a script with an xcopy command to deploy as well.

link|flag
vote up 0 vote down

You can use Web Deployment Projects to help with this as well. In the WDP you can use the ExcludeFromBuild item to exclude those files. For more info see http://msdn.microsoft.com/en-us/library/aa479568.aspx.

This would handle the site to get pre-compiled for you to then publish to another dev server, this depends on how you deploy now. If you copy to network share or ftp then you can do those with MSBuild as well. I'm not familiar with the Build Publisher that the previous answer mentions.

link|flag

Your Answer

Get an OpenID
or

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