Team Foundation Server (TFS)?
November 30th, 2011
No comments
TFS? No, thank you….
I prefer Git\Svn + NUnit + Cruise Control
TFS? No, thank you….
I prefer Git\Svn + NUnit + Cruise Control
I try not to share source files among projects. If couple of projects use the same source codes I create separate project (assembly in .NET terminology), that contains shared functionality. However, sometimes there is no way to avoid using the same shared files. It can happen, for instance, if there is a project A and its subproject B. The project B can be used, for example, for shipping subset of source files to customers. The problem is, that all source files are mixed and there is a need to find a way how to extract files of project B only. Lets look how to achieve it using MSBuild.