51 references to HasAllInformation
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
913IsMiscellaneous = project.Solution.WorkspaceKind == WorkspaceKind.MiscellaneousFiles && !project.State.HasAllInformation,
Microsoft.CodeAnalysis.LanguageServer.UnitTests (46)
FileBasedProgramsWorkspaceTests.cs (46)
99Assert.False(document.Project.State.HasAllInformation); 110Assert.True(document.Project.State.HasAllInformation); 138Assert.False(document.Project.State.HasAllInformation); 149Assert.True(document.Project.State.HasAllInformation); 179Assert.True(document.Project.State.HasAllInformation); 230Assert.True(document.Project.State.HasAllInformation); 237Assert.True(document.Project.State.HasAllInformation); 263Assert.True(document.Project.State.HasAllInformation); 327Assert.False(canonicalDocumentTwo.Project.State.HasAllInformation); 425Assert.False(looseDocumentOne.Project.State.HasAllInformation); 436Assert.False(canonicalDocumentOne.Project.State.HasAllInformation); 453Assert.True(canonicalDocumentTwo.Project.State.HasAllInformation); 491Assert.False(looseDocument.Project.State.HasAllInformation); 526Assert.False(looseDocumentOne.Project.State.HasAllInformation); 537Assert.False(canonicalDocumentOne.Project.State.HasAllInformation); 611Assert.True(document.Project.State.HasAllInformation); 620Assert.False(document.Project.State.HasAllInformation); 628Assert.True(document.Project.State.HasAllInformation); 651Assert.True(document.Project.State.HasAllInformation); 660Assert.False(document.Project.State.HasAllInformation); 668Assert.True(document.Project.State.HasAllInformation); 736Assert.False(document.Project.State.HasAllInformation); 746Assert.True(document.Project.State.HasAllInformation); 758Assert.True(document.Project.State.HasAllInformation); 769Assert.True(document.Project.State.HasAllInformation); 801Assert.True(document.Project.State.HasAllInformation); 911Assert.True(document.Project.State.HasAllInformation); 967Assert.True(document.Project.State.HasAllInformation); 1019Assert.True(document.Project.State.HasAllInformation); 1135Assert.False(document.Project.State.HasAllInformation); 1144Assert.False(document.Project.State.HasAllInformation); // We didn't observe the file system change 1152Assert.True(document.Project.State.HasAllInformation); 1159Assert.True(document.Project.State.HasAllInformation); // We didn't observe the file system change 1167Assert.False(document.Project.State.HasAllInformation); 1195Assert.False(document.Project.State.HasAllInformation); 1225Assert.False(document.Project.State.HasAllInformation); 1258Assert.True(document.Project.State.HasAllInformation); 1265Assert.True(document.Project.State.HasAllInformation); 1273Assert.True(document.Project.State.HasAllInformation); 1280Assert.True(document.Project.State.HasAllInformation); 1288Assert.True(document.Project.State.HasAllInformation); 1317Assert.True(document.Project.State.HasAllInformation); 1352Assert.True(document.Project.State.HasAllInformation); 1386Assert.False(document.Project.State.HasAllInformation); 1410Assert.True(document.Project.State.HasAllInformation); 1443Assert.True(document.Project.State.HasAllInformation);
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Solution\ProjectState.cs (1)
744=> (hasAllInformation == HasAllInformation) ? this : WithNewerAttributes(Attributes.With(hasAllInformation: hasAllInformation, version: Version.GetNewerVersion()));
Workspace\Solution\SolutionCompilationState.cs (1)
1243: project.HasAllInformation ? SpecializedTasks.True : SpecializedTasks.False;
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker.cs (1)
489var hasSuccessfullyLoaded = this.ProjectState.HasAllInformation &&
Roslyn.VisualStudio.Next.UnitTests (1)
Services\SolutionServiceTests.cs (1)
278Assert.Equal((version % 2) != 0, project.State.HasAllInformation);