Is there a way in Visual Studio 2008 Team Foundation System to produce a report showing "Between date 01/01/2002 and date 02/01/2002 the following code was added:":
FunctionOne(Param one, Param two) { //Func one contents }
FunctionTwo(Param one, Param two) { //Func two contents }
The following code was modified:
FunctionOne(Param one, Param two)
{
int x= 56;
}
etc., etc.?
We want to produce a detailed, source-code level output of what exactly has changed between two given builds. Currently, we can produce a list of changesets, and then go through each changeset manually, and build up this sort of report, but it can take a while and an automated method would be ideal.