示例#1
0
        private void MergeResults(VaultClientHelper client, VaultHistoryDataSet destination, VaultHistoryItem [] history, string featureTag)
        {
            if (history == null)
            {
                return;
            }

            foreach (VaultHistoryItem item in history)
            {
                if (HistoryQueryHelper.IsChangeRelatedToTask(item.Comment, featureTag))
                {
                    destination.Add(client, item);
                }
            }
        }
示例#2
0
 public ChangeHistoryDataSet GetVersions(string selector, VaultRepositoryAuthSettings connectionSettings)
 {
     return(GetVersions(HistoryQueryHelper.GetTaskTags(selector), connectionSettings));
 }