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)
4094Assert.False(await project.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4125Assert.True(await project1.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4126Assert.True(await project2.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4154Assert.True(await project1.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4155Assert.False(await project2.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4335Assert.True(await frozenSolution.GetProject(project1.Id).HasSuccessfullyLoadedAsync(CancellationToken.None)); 4336Assert.True(await frozenSolution.GetProject(project2.Id).HasSuccessfullyLoadedAsync(CancellationToken.None)); 4564Assert.False(await csBrokenProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4567Assert.True(await vbNormalProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4570Assert.True(await dependsOnBrokenProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4573Assert.True(await dependsOnVbNormalProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4577Assert.True(await transitivelyDependsOnBrokenProjects.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4581Assert.True(await transitivelyDependsOnNormalProjects.HasSuccessfullyLoadedAsync(CancellationToken.None));