本文介绍了从命令行构建Web部署包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法使用Visual Studio 2010 CommandLine构建Web应用程序的部署包?
Is there any way to build deployment package for a Web Application using Visual Studio 2010 CommandLine ?
推荐答案
我认为这有你正在寻找
MSBuild "MyProjectName.csproj" /T:Package /P:Configuration=Staging;PackageLocation="D:\Vishal\Package.zip"
我从这个网站得到这个:
I got this from this site:http://vishaljoshi.blogspot.com/2009/02/web-packaging-creating-web-packages.html
这篇关于从命令行构建Web部署包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!