在 TFS 2010 构建定义中设置 Web 包目标文件夹
我们必须要为每晚构建生成 Web 部署包的 Web 项目。 一个 MVC2 项目和一个 WCF 项目。
我们有一个脚本来监听这些包的新版本,并在新版本被删除时部署它们。这样做的问题是,包被部署在 TFS 部署文件夹内,即“....\Nightly Build_20101021.3_PublishedWebSites”。
有什么方法可以为Web部署包的部署定义一个设置路径, 即'....\NightlyBuild\packages'? 我们可以在构建定义中执行此操作吗?
我们对于构建定义的 MSBUild 参数是: /P:CreatePackageOnPublish=true /P:DeployOnBuild=true
我们在项目中使用 TFS2010 和 Visual Studio 2010。
干杯,
库珀。
We have to web projects that we want to generate web deploy packages for on nightly build.
One MVC2 project and on WCF project.
We have a script that listens for new versions of these packages and deploys them as there are dropped new versions. The problem with this is that the packages gets deployed inside the TFS deploy folders, i.e. '....\Nightly Build_20101021.3_PublishedWebSites'.
Is there any way to define a set path for the deployment of the web deploy packages,
i.e.'....\NightlyBuild\packages'?
Can we do this in the build definition?
Our MSBUild arguments for the build defintion are:
/P:CreatePackageOnPublish=true /P:DeployOnBuild=true
We use TFS2010 and visual studio 2010 in the project.
Cheers,
Cooper.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们按照本文中的指南解决了这个问题:
http://nickhoggard.wordpress.com/tag /continuous-integration/
添加本文末尾提到的复制目录任务就达到了目的。
We solved this by following the guide in this article:
http://nickhoggard.wordpress.com/tag/continuous-integration/
Adding the copy directory task as mentioned towards the end of the article did the trick.