16 references to HasSuccessfullyLoadedAsync
Microsoft.CodeAnalysis.Features (2)
Diagnostics\Service\DiagnosticAnalyzerService_ComputeDiagnosticAnalysisResults.cs (1)
57var projectLoadedSuccessfully = await project.HasSuccessfullyLoadedAsync(cancellationToken).ConfigureAwait(false);
Diagnostics\Service\DocumentAnalysisExecutor.cs (1)
106var isEnabled = await textDocument.Project.HasSuccessfullyLoadedAsync(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (1)
ExternalAccess\UnitTesting\Api\UnitTestingProjectExtensions.cs (1)
16=> project.HasSuccessfullyLoadedAsync(cancellationToken);
Microsoft.CodeAnalysis.Workspaces.UnitTests (13)
SolutionTests\SolutionTests.cs (13)
4216Assert.False(await project.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4247Assert.True(await project1.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4248Assert.True(await project2.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4276Assert.True(await project1.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4277Assert.False(await project2.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4457Assert.True(await frozenSolution.GetProject(project1.Id).HasSuccessfullyLoadedAsync(CancellationToken.None)); 4458Assert.True(await frozenSolution.GetProject(project2.Id).HasSuccessfullyLoadedAsync(CancellationToken.None)); 4686Assert.False(await csBrokenProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4689Assert.True(await vbNormalProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4692Assert.True(await dependsOnBrokenProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4695Assert.True(await dependsOnVbNormalProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4699Assert.True(await transitivelyDependsOnBrokenProjects.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4703Assert.True(await transitivelyDependsOnNormalProjects.HasSuccessfullyLoadedAsync(CancellationToken.None));