VS2005 and ClickOnce Publish

I would like to "Publish" my C# project. In this context, publish refers to the process of creating a ClickOnce build and copying it to my deployment servers. I can easily do this from within Visual Studio 2005, but can't locate a way using FB. Is there a way to do this?

The publish feature in VS2005 is just that, a feature of VS2005. You can automated the creation part of the ClickOnce application using the MSBuild action in FinalBuilder using the publish target. This will however not copy the files to your publish url, as that is a feature of the VS2005 IDE.

This page has some information on automating click once builds.

http://msdn2.microsoft.com/en-us/library/ms165431.aspx

HTH