9 references to Folders
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Host\RemoteWorkspace.SolutionCreator.cs (3)
584
if (document.State.Attributes.
Folders
!= newDocumentInfo.
Folders
)
588
document = document.Project.Solution.WithDocumentFolders(document.Id, newDocumentInfo.
Folders
).GetRequiredDocument(document.Id);
Microsoft.CodeAnalysis.Workspaces (6)
Workspace\Solution\DocumentInfo.cs (4)
36
public IReadOnlyList<string> Folders => Attributes.
Folders
;
206
var newFolders = folders ??
Folders
;
214
newFolders.SequenceEqual(
Folders
) &&
237
writer.WriteArray(
Folders
.ToImmutableArrayOrEmpty(), static (w, f) => w.WriteString(f));
Workspace\Solution\TextDocumentState.cs (1)
50
public IReadOnlyList<string> Folders => Attributes.
Folders
;
Workspace\Workspace.cs (1)
1147
if (oldAttributes.
Folders
!= newInfo.Folders)