2 implementations of StartBatchAsync
Microsoft.CodeAnalysis.LanguageServer (1)
HostWorkspace\WorkspaceProject.cs (1)
209public async Task<IWorkspaceProjectBatch> StartBatchAsync(CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\BrokeredService\WorkspaceProject.cs (1)
184public async Task<IWorkspaceProjectBatch> StartBatchAsync(CancellationToken cancellationToken)
2 references to StartBatchAsync
Microsoft.CodeAnalysis.LanguageServer.UnitTests (1)
WorkspaceProjectFactoryServiceTests.cs (1)
40using var batch = await workspaceProject.StartBatchAsync(CancellationToken.None);
Microsoft.CodeAnalysis.Remote.Workspaces (1)
ProjectSystem\IWorkspaceProjectBatch.cs (1)
13/// A batch returned from <see cref="IWorkspaceProject.StartBatchAsync(CancellationToken)" />. <see cref="ApplyAsync" /> must be called before disposing the batch object, which is otherwise a no-op.