16 references to HasSuccessfullyLoadedAsync
Microsoft.CodeAnalysis.Features (2)
Diagnostics\Service\DocumentAnalysisExecutor.cs (1)
109var isEnabled = await textDocument.Project.HasSuccessfullyLoadedAsync(cancellationToken).ConfigureAwait(false);
Diagnostics\Service\EngineV2\DiagnosticIncrementalAnalyzer.Executor.cs (1)
56var projectLoadedSuccessfully = await 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)
4049Assert.False(await project.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4080Assert.True(await project1.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4081Assert.True(await project2.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4109Assert.True(await project1.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4110Assert.False(await project2.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4290Assert.True(await frozenSolution.GetProject(project1.Id).HasSuccessfullyLoadedAsync(CancellationToken.None)); 4291Assert.True(await frozenSolution.GetProject(project2.Id).HasSuccessfullyLoadedAsync(CancellationToken.None)); 4519Assert.False(await csBrokenProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4522Assert.True(await vbNormalProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4525Assert.True(await dependsOnBrokenProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4528Assert.True(await dependsOnVbNormalProject.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4532Assert.True(await transitivelyDependsOnBrokenProjects.HasSuccessfullyLoadedAsync(CancellationToken.None)); 4536Assert.True(await transitivelyDependsOnNormalProjects.HasSuccessfullyLoadedAsync(CancellationToken.None));