6 references to WithFrozenSourceGeneratedDocument
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Host\RemoteWorkspace.SolutionCreator.cs (1)
90
solution = solution.
WithFrozenSourceGeneratedDocument
(identity, sourceText).Project.Solution;
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Solution\Solution.cs (1)
1769
/// Undoes the operation of <see cref="
WithFrozenSourceGeneratedDocument
"/>; any frozen source generated document is allowed
Workspace\TextExtensions.cs (2)
36
return ImmutableArray.Create(solution.
WithFrozenSourceGeneratedDocument
(documentIdentity, text));
74
return solution.
WithFrozenSourceGeneratedDocument
(documentIdentity, text);
Roslyn.VisualStudio.Next.UnitTests (2)
Services\SolutionServiceTests.cs (2)
501
var frozenSolution1 = solution.
WithFrozenSourceGeneratedDocument
(documentIdentity, frozenText1).Project.Solution;
510
var frozenSolution2 = solution.
WithFrozenSourceGeneratedDocument
(documentIdentity, frozenText2).Project.Solution;