1 type derived from OptionStorageLocation
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
28 references to OptionStorageLocation
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Microsoft.CodeAnalysis.Workspaces (17)
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (5)
Options\TestOption.cs (5)
18public ImmutableArray<OptionStorageLocation> StorageLocations { get; set; }
25public TestOption(string feature = "test", string name = "test", T? defaultValue = default, OptionStorageLocation[]? storageLocations = null)
26: base(feature, name, defaultValue!, storageLocations ?? Array.Empty<OptionStorageLocation>())
33public PerLanguageTestOption(string feature = "test", string name = "test", T? defaultValue = default, OptionStorageLocation[]? storageLocations = null)
34: base(feature, name, defaultValue!, storageLocations ?? Array.Empty<OptionStorageLocation>())
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)