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