Exemple #1
0
        public async Task <string[]> GetModifiedDocuments(string firstCommit, string lastCommit)
        {
            var url = new BitbucketCommitDiffUrl(firstCommit, lastCommit);

            var commitDiff = await _apiClient.Get <CommitDiffDto>(url);

            return(commitDiff
                   .Values
                   .Select(v => v.Document.FullPath.Replace("/", "\\"))
                   .ToArray());
        }