Ajaxx
Ajaxx

Reputation: 2510

What techniques can you use to build a web deployment package for a vs2008 solution?

My website is built on an ASP.NET, .NET 3.5 framework. For various reasons, I'm not in a position to move my project to vs2010. As a result, I cannot make use of the "Build deployment package" targets that vs2010 supports.

Does anyone know of a way to build a web deployment package (the zip archive that can be imported into IIS 7 via web deploy) with a vs2008 installation (prefer to use msbuild here and I don't require vs2008 integration).

FWIW, I'm trying to avoid publishing it to a temporary server for the purpose of exporting the website. However, if that's the only option, then so be it.

Upvotes: 0

Views: 243

Answers (2)

Bilal and Olga
Bilal and Olga

Reputation: 3251

I've started putting together a series of tutorials about Web Deploy here - hope they help: http://bilalaslam.com/

Upvotes: 0

torresdal
torresdal

Reputation: 36

You can use msdeploy from the command line and trigger it from your build process: http://blog.torresdal.net/2010/08/16/NoClickWebDeploymentPart2WebDeployAkaMsdeploy.aspx

Upvotes: 2

Related Questions