I have a visual studio solution consisting of several web applications, Windows services and other class libraries. I am going to configure it for continuous integration with TFS 2010.
The default build template places each binary in an unpacking folder and creates the _PublishedWebsites folder in which it publishes each web application. I do not want this because I need to separate files belonging to one service from files belonging to another service.
I followed the steps in TFS 2010 BUILD SERVER: I cannot save the folder tree at the delete location to put each output in my own folder. This works fine, but now my web applications are no longer published. The project compiles and its binaries are placed in a subfolder inside the dump folder, but all other files, such as Web.config, aspx, css, etc. are missing.
Perhaps I could use two build templates: one for web applications and the other for Windows services, but I would prefer to have one build template. How can I achieve this?
source
share