2 instantiations of SQLitePersistentStorageService
IdeBenchmarks (1)
SQLitePersistentStorageBenchmark.cs (1)
65
_storageService = new
SQLitePersistentStorageService
(new StorageConfiguration(), asyncListener);
Microsoft.CodeAnalysis.Workspaces (1)
Storage\SQLite\v2\SQLitePersistentStorageService.cs (1)
31
=> new
SQLitePersistentStorageService
(workspaceServices.GetRequiredService<IPersistentStorageConfiguration>(), _asyncListener);
3 references to SQLitePersistentStorageService
IdeBenchmarks (1)
SQLitePersistentStorageBenchmark.cs (1)
30
private
SQLitePersistentStorageService
_storageService;
Microsoft.CodeAnalysis.Workspaces (2)
Storage\PersistentStorageExtensions.cs (1)
22
return services.GetService<
SQLitePersistentStorageService
>() ?? NoOpPersistentStorageService.GetOrThrow(configuration);
Storage\SQLite\v2\SQLitePersistentStorageService.cs (1)
22
[ExportWorkspaceServiceFactory(typeof(
SQLitePersistentStorageService
)), Shared]