41 references to SolutionState
Microsoft.CodeAnalysis.Workspaces (41)
Workspace\Host\PersistentStorage\ProjectKey.cs (1)
35
=> ToProjectKey(project.Solution.
SolutionState
, project.State);
Workspace\Host\PersistentStorage\SolutionKey.cs (1)
22
=> ToSolutionKey(solution.
SolutionState
);
Workspace\ProjectSystem\ProjectSystemProject.cs (1)
302
var projectState = solution.
SolutionState
.GetRequiredProjectState(projectId);
Workspace\Solution\Project.cs (1)
834
=> Solution.
SolutionState
.Analyzers.GetSkippedAnalyzersInfo(this, infoCache);
Workspace\Solution\Solution.cs (32)
74
internal int WorkspaceVersion => this.
SolutionState
.WorkspaceVersion;
82
public SolutionServices Services => this.
SolutionState
.Services;
84
internal string? WorkspaceKind => this.
SolutionState
.WorkspaceKind;
86
internal ProjectState? GetProjectState(ProjectId projectId) => this.
SolutionState
.GetProjectState(projectId);
97
return this.
SolutionState
.Services.WorkspaceServices.Workspace;
105
public SolutionId Id => this.
SolutionState
.Id;
110
public string? FilePath => this.
SolutionState
.FilePath;
115
public VersionStamp Version => this.
SolutionState
.Version;
120
public IReadOnlyList<ProjectId> ProjectIds => this.
SolutionState
.ProjectIds;
130
public VersionStamp GetLatestProjectVersion() => this.
SolutionState
.GetLatestProjectVersion();
136
=> this.
SolutionState
.ContainsProject(projectId);
156
var state = solution.
SolutionState
.GetProjectState(projectId);
211
public bool ContainsDocument([NotNullWhen(returnValue: true)] DocumentId? documentId) => this.
SolutionState
.ContainsDocument(documentId);
216
public bool ContainsAdditionalDocument([NotNullWhen(returnValue: true)] DocumentId? documentId) => this.
SolutionState
.ContainsAdditionalDocument(documentId);
221
public bool ContainsAnalyzerConfigDocument([NotNullWhen(returnValue: true)] DocumentId? documentId) => this.
SolutionState
.ContainsAnalyzerConfigDocument(documentId);
621
if (this.
SolutionState
.ContainsProjectReference(projectId, projectReference))
717
if (this.
SolutionState
.ContainsMetadataReference(projectId, metadataReference))
800
if (this.
SolutionState
.ContainsAnalyzerReference(projectId, analyzerReference))
884
if (this.
SolutionState
.AnalyzerReferences.Contains(analyzerReference))
904
if (!this.
SolutionState
.AnalyzerReferences.Contains(analyzerReference))
1116
=> this.
SolutionState
.GetProjectState(projectId) ?? throw new InvalidOperationException(string.Format(WorkspacesResources._0_is_not_part_of_the_workspace, projectId));
1562
=> this.
SolutionState
.GetRelatedDocumentIds(documentId, includeDifferentLanguages);
1572
=> this.
SolutionState
.GetFirstRelatedDocumentId(documentId, relatedProjectIdHint);
1678
public ImmutableArray<DocumentId> GetDocumentIdsWithFilePath(string? filePath) => this.
SolutionState
.GetDocumentIdsWithFilePath(filePath);
1683
public ProjectDependencyGraph GetProjectDependencyGraph() => this.
SolutionState
.GetProjectDependencyGraph();
1689
public OptionSet Options => this.
SolutionState
.Options;
1694
public IReadOnlyList<AnalyzerReference> AnalyzerReferences => this.
SolutionState
.AnalyzerReferences;
1702
internal ImmutableDictionary<string, StructuredAnalyzerConfigOptions> FallbackAnalyzerOptions =>
SolutionState
.FallbackAnalyzerOptions;
1827
if (this.
SolutionState
.ContainsTransitiveReference(projectReference.ProjectId, projectId))
1845
var projectState = this.
SolutionState
.GetRequiredProjectState(projectId);
1848
var hasSubmissionReference = !ignoreExistingReferences && projectState.ProjectReferences.Any(p => this.
SolutionState
.GetRequiredProjectState(p.ProjectId).IsSubmission);
1853
var referencedProjectState = this.
SolutionState
.GetProjectState(projectReference.ProjectId);
Workspace\Workspace.cs (5)
424
foreach (var (language, _) in oldSolution.
SolutionState
.ProjectCountByLanguage)
426
if (!newSolution.
SolutionState
.ProjectCountByLanguage.ContainsKey(language))
433
foreach (var (language, _) in newSolution.
SolutionState
.ProjectCountByLanguage)
435
if (oldSolution.
SolutionState
.ProjectCountByLanguage.ContainsKey(language))
1595
var changedOptions = newSolution.
SolutionState
.Options.GetChangedOptions();