2 instantiations of NoOpPersistentStorage
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Host\PersistentStorage\NoOpPersistentStorage.cs (2)
21: new NoOpPersistentStorage(solutionKey); 88public static IChecksummedPersistentStorage GetStorageInstance(SolutionKey solutionKey) => new NoOpPersistentStorage(solutionKey);
7 references to NoOpPersistentStorage
Microsoft.CodeAnalysis.Workspaces (7)
Storage\AbstractPersistentStorageService.cs (4)
32/// cref="NoOpPersistentStorage"/> instance will be used. 46return NoOpPersistentStorage.GetOrThrow(solutionKey, Configuration.ThrowOnFailure); 55return NoOpPersistentStorage.GetOrThrow(solutionKey, Configuration.ThrowOnFailure); 80return NoOpPersistentStorage.GetOrThrow(solutionKey, Configuration.ThrowOnFailure);
Storage\LegacyPersistentStorageService.cs (1)
37=> NoOpPersistentStorage.GetOrThrow(SolutionKey.ToSolutionKey(solution), throwOnFailure: false);
Storage\SQLite\v2\SQLitePersistentStorageService.cs (1)
77return new(NoOpPersistentStorage.GetOrThrow(solutionKey, Configuration.ThrowOnFailure));
Workspace\Host\PersistentStorage\NoOpPersistentStorageService.cs (1)
26=> new(NoOpPersistentStorage.GetOrThrow(solutionKey, throwOnFailure: false));