1 implementation of CreateBatchScope
Microsoft.VisualStudio.LanguageServices.Implementation (1)
ProjectSystem\CPS\CPSProject_IWorkspaceProjectContext.cs (1)
281public IAsyncDisposable CreateBatchScope() => _projectSystemProject.CreateBatchScope();
14 references to CreateBatchScope
Microsoft.VisualStudio.LanguageServices (14)
ProjectSystem\BrokeredService\WorkspaceProject.cs (14)
34await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 42await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 50await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 57await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 65await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 73await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 81await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 93await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 103await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 114await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 122await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 130await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 138await using var batch = _project.CreateBatchScope().ConfigureAwait(false); 164return Task.FromResult<IWorkspaceProjectBatch>(new WorkspaceProjectBatch(_project.CreateBatchScope()));