Archive

Posts Tagged ‘MSBuild’

Team Foundation Server (TFS)?

November 30th, 2011 No comments

TFS? No, thank you….
I prefer Git\Svn + NUnit + Cruise Control

How to copy projects files using MSBuild. Step by step explanation.

November 23rd, 2010 No comments

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.

Read more…