1 write to OldSolution
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\SolutionChanges.cs (1)
22
OldSolution
= oldSolution;
10 references to OldSolution
Microsoft.CodeAnalysis.Workspaces (8)
Workspace\Solution\SolutionChanges.cs (8)
29
if (!
OldSolution
.ContainsProject(id))
38
var old =
OldSolution
;
47
yield return NewSolution.GetRequiredProject(id).GetChanges(
OldSolution
.GetRequiredProject(id));
54
foreach (var id in
OldSolution
.ProjectIds)
58
yield return
OldSolution
.GetRequiredProject(id);
65
var oldAnalyzerReferences = new HashSet<AnalyzerReference>(
OldSolution
.AnalyzerReferences);
78
foreach (var analyzerReference in
OldSolution
.AnalyzerReferences)
103
var oldState =
OldSolution
.CompilationState.TryGetSourceGeneratedDocumentStateForAlreadyGeneratedId(id);
Microsoft.VisualStudio.LanguageServices (2)
ProjectSystem\VisualStudioWorkspaceImpl.cs (2)
631
var document = await solutionChanges.
OldSolution
.GetRequiredDocumentAsync(docId, includeSourceGenerated: true, cancellationToken).ConfigureAwait(true);
637
var oldDocument = solutionChanges.
OldSolution
.GetRequiredSourceGeneratedDocumentForAlreadyGeneratedId(docId);