What's the best way to get TFS to output each project to its own directory?

前端 未结 11 1307
我寻月下人不归
我寻月下人不归 2020-11-30 18:58

I\'m putting a large codebase into Team Foundation Server. I would like the build process to create a \"ready to deploy\" build of our projects.

The normal way we\'v

11条回答
  •  清歌不尽
    2020-11-30 19:35

    You could have one buildscript per project, that would do exactly what you want. Just create a new TFSBuild file, add the projects you want to have built to the itemgroup(in the order you want them built), set where you want the output to be. This is done by overriding the - property in your TFSBuild file.

    But I also agree with the previous poster - why don't you just run with a single build script, and add a zip-task at the end? Maintaining a buildscript per project does add maintenance overhead...

提交回复
热议问题