1 write to _oldSolution
Microsoft.CodeAnalysis.Workspaces (1)
LinkedFileDiffMerging\LinkedFileDiffMergingSession.cs (1)
28
_oldSolution
= oldSolution;
6 references to _oldSolution
Microsoft.CodeAnalysis.Workspaces (6)
LinkedFileDiffMerging\LinkedFileDiffMergingSession.cs (6)
40
.GroupBy(d =>
_oldSolution
.GetDocument(d).FilePath, StringComparer.OrdinalIgnoreCase);
88
var textDifferencingService =
_oldSolution
.Services.GetRequiredService<IDocumentTextDifferencingService>();
89
var appliedChanges = await textDifferencingService.GetTextChangesAsync(
_oldSolution
.GetDocument(linkedDocumentGroup.First()), _newSolution.GetDocument(linkedDocumentGroup.First()), cancellationToken).ConfigureAwait(false);
95
_oldSolution
.GetDocument(documentId),
104
var originalDocument =
_oldSolution
.GetDocument(linkedDocumentGroup.First());
114
mergeConflictHandler ??=
_oldSolution
.GetDocument(linkedDocumentGroup.First()).GetLanguageService<ILinkedFileMergeConflictCommentAdditionService>();