TFS API,以编程方式确定差异

时间:2013-12-22 13:45:59

标签: c# tfs tfs-sdk

问题背景:

我目前正在比较两个不同分支文件夹之间的指定文件差异。例如,以下工作完美:

        var potentialDifference = Difference.DiffFiles(locationPathA, FileType.Detect(locationPathA, null), locationPathB, FileType.Detect(locationPathB, null), new DiffOptions());

        string result = potentialDifference.Next == null ? "Identical" : "Different";

        Assert.IsNotNull(result);

        Assert.AreSame(result, "Identical");

实际问题:

我需要知道的是,我是否需要从TFS下载分支文件夹的两个工作区并在各个工作区之间进行比较?

0 个答案:

没有答案