2 types derived from ProjectPropertyStorage
Microsoft.VisualStudio.LanguageServices (2)
Utilities\ProjectPropertyStorage.cs (2)
46private sealed class BuildPropertyStorage : ProjectPropertyStorage 57private sealed class PerConfigurationPropertyStorage : ProjectPropertyStorage
11 references to ProjectPropertyStorage
Microsoft.VisualStudio.LanguageServices (7)
ProjectSystem\VisualStudioWorkspaceImpl.cs (4)
504var storage = ProjectPropertyStorage.Create(TryGetDTEProject(projectId), ServiceProvider.GlobalProvider); 521var storage = ProjectPropertyStorage.Create(TryGetDTEProject(projectId), ServiceProvider.GlobalProvider);
Utilities\ICompilationOptionsChangingService.cs (1)
14void Apply(CompilationOptions oldOptions, CompilationOptions newOptions, ProjectPropertyStorage storage);
Utilities\IParseOptionsChangingService.cs (1)
14void Apply(ParseOptions options, ProjectPropertyStorage storage);
Utilities\ProjectPropertyStorage.cs (1)
31public static ProjectPropertyStorage Create(Project project, IServiceProvider serviceProvider)
Microsoft.VisualStudio.LanguageServices.CSharp (2)
Utilities\CSharpCompilationOptionsChangingService.cs (1)
33public void Apply(CompilationOptions oldOptions, CompilationOptions newOptions, ProjectPropertyStorage storage)
Utilities\CSharpParseOptionsChangingService.cs (1)
57public void Apply(ParseOptions options, ProjectPropertyStorage storage)
Microsoft.VisualStudio.LanguageServices.VisualBasic (2)
Utilities\VisualBasicCompilationOptionsChangingService.vb (1)
24Public Sub Apply(oldOptions As CompilationOptions, newOptions As CompilationOptions, storage As ProjectPropertyStorage) Implements ICompilationOptionsChangingService.Apply
Utilities\VisualBasicParseOptionsChangingService.vb (1)
24Public Sub Apply(options As ParseOptions, storage As ProjectPropertyStorage) Implements IParseOptionsChangingService.Apply