├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── CI.yml │ └── PublishVSIX.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── marketplace ├── images │ ├── EditDWORDValueDialog.png │ ├── QuickSearch.png │ ├── SettingsStoreToolWindow.png │ ├── SubCollectionContextMenu.png │ └── ViewMenu.png ├── overview.md └── publishManifest.json └── src ├── Directory.Build.props ├── Directory.Build.targets ├── Microsoft.NET.GenerateAssemblyInfo.targets ├── SettingsStoreExplorer.sln ├── SettingsStoreExplorer ├── BinaryToHexDumpConverter.cs ├── ControlExtensions.cs ├── DependencyObjectExtensions.cs ├── DwordToStringConverter.cs ├── EditBinaryDialog.xaml ├── EditBinaryDialog.xaml.cs ├── EditIntegerDialog.xaml ├── EditIntegerDialog.xaml.cs ├── EditStringDialog.xaml ├── EditStringDialog.xaml.cs ├── GenericBooleanConverter.cs ├── HandleDoubleClickBehavior.cs ├── HandleEnterBehavior.cs ├── HexDumpAddressTextBox.cs ├── HexDumpAsciiTextBox.cs ├── HexDumpControl.xaml ├── HexDumpControl.xaml.cs ├── HexDumpControlCustomTextBox.cs ├── HexDumpControlDataContext.cs ├── HexDumpHexBytesTextBox.cs ├── IVsSettingsStoreExtensions.cs ├── IVsWritableSettingsStoreExtensions.cs ├── IntegerToStringConverter.cs ├── ItemContainerGeneratorExtensions.cs ├── KnownMonikers.cs ├── ModifyPropertyValueCommand.cs ├── ObservableCollectionExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── QwordToStringConverter.cs ├── Resources │ ├── SettingsStoreExplorer.128x128.png │ ├── SettingsStoreExplorer.16x16.png │ ├── SettingsStoreExplorer.dark.xaml │ └── SettingsStoreExplorer.light.xaml ├── RoamingSettingsStore.cs ├── SettingsStoreCommandSet.cs ├── SettingsStoreExplorer.imagemanifest ├── SettingsStoreExplorer.projitems ├── SettingsStoreExplorer.shproj ├── SettingsStoreExplorerPackage.cs ├── SettingsStoreExplorerToolWindow.cs ├── SettingsStoreExplorerToolWindowCommand.cs ├── SettingsStoreExplorerToolWindowControl.xaml ├── SettingsStoreExplorerToolWindowControl.xaml.cs ├── SettingsStoreItemExtensions.cs ├── SettingsStoreItemToImageMonikerConverter.cs ├── SettingsStorePropertyNameConverter.cs ├── SettingsStorePropertyValueConverter.cs ├── SettingsStoreTypeToImageMonikerConverter.cs ├── SettingsStoreTypeToRegTypeConverter.cs ├── SettingsStoreViewModel.cs ├── Telemetry.cs ├── TextBoxSelectionAdorner.cs ├── TextBoxWithSelectionAdorner.cs ├── VSPackage.Designer.cs ├── VSPackage.resx └── VsThemeStyles.xaml ├── VSIX ├── CustomImages.vsct ├── SettingsStoreExplorerPackage.vsct ├── VSIX.csproj └── source.extension.vsixmanifest └── VSIX_Dev17 ├── VSIX_Dev17.csproj └── source.extension.vsixmanifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/PublishVSIX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/.github/workflows/PublishVSIX.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/README.md -------------------------------------------------------------------------------- /marketplace/images/EditDWORDValueDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/marketplace/images/EditDWORDValueDialog.png -------------------------------------------------------------------------------- /marketplace/images/QuickSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/marketplace/images/QuickSearch.png -------------------------------------------------------------------------------- /marketplace/images/SettingsStoreToolWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/marketplace/images/SettingsStoreToolWindow.png -------------------------------------------------------------------------------- /marketplace/images/SubCollectionContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/marketplace/images/SubCollectionContextMenu.png -------------------------------------------------------------------------------- /marketplace/images/ViewMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/marketplace/images/ViewMenu.png -------------------------------------------------------------------------------- /marketplace/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/marketplace/overview.md -------------------------------------------------------------------------------- /marketplace/publishManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/marketplace/publishManifest.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Microsoft.NET.GenerateAssemblyInfo.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/Microsoft.NET.GenerateAssemblyInfo.targets -------------------------------------------------------------------------------- /src/SettingsStoreExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer.sln -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/BinaryToHexDumpConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/BinaryToHexDumpConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/ControlExtensions.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/DependencyObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/DependencyObjectExtensions.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/DwordToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/DwordToStringConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/EditBinaryDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/EditBinaryDialog.xaml -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/EditBinaryDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/EditBinaryDialog.xaml.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/EditIntegerDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/EditIntegerDialog.xaml -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/EditIntegerDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/EditIntegerDialog.xaml.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/EditStringDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/EditStringDialog.xaml -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/EditStringDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/EditStringDialog.xaml.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/GenericBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/GenericBooleanConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HandleDoubleClickBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HandleDoubleClickBehavior.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HandleEnterBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HandleEnterBehavior.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HexDumpAddressTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HexDumpAddressTextBox.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HexDumpAsciiTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HexDumpAsciiTextBox.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HexDumpControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HexDumpControl.xaml -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HexDumpControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HexDumpControl.xaml.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HexDumpControlCustomTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HexDumpControlCustomTextBox.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HexDumpControlDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HexDumpControlDataContext.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/HexDumpHexBytesTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/HexDumpHexBytesTextBox.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/IVsSettingsStoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/IVsSettingsStoreExtensions.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/IVsWritableSettingsStoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/IVsWritableSettingsStoreExtensions.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/IntegerToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/IntegerToStringConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/ItemContainerGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/ItemContainerGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/KnownMonikers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/KnownMonikers.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/ModifyPropertyValueCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/ModifyPropertyValueCommand.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/ObservableCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/ObservableCollectionExtensions.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/QwordToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/QwordToStringConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/Resources/SettingsStoreExplorer.128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/Resources/SettingsStoreExplorer.128x128.png -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/Resources/SettingsStoreExplorer.16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/Resources/SettingsStoreExplorer.16x16.png -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/Resources/SettingsStoreExplorer.dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/Resources/SettingsStoreExplorer.dark.xaml -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/Resources/SettingsStoreExplorer.light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/Resources/SettingsStoreExplorer.light.xaml -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/RoamingSettingsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/RoamingSettingsStore.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreCommandSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreCommandSet.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreExplorer.imagemanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreExplorer.imagemanifest -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreExplorer.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreExplorer.projitems -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreExplorer.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreExplorer.shproj -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreExplorerPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreExplorerPackage.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreExplorerToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreExplorerToolWindow.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreExplorerToolWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreExplorerToolWindowCommand.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreExplorerToolWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreExplorerToolWindowControl.xaml -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreExplorerToolWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreExplorerToolWindowControl.xaml.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreItemExtensions.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreItemToImageMonikerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreItemToImageMonikerConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStorePropertyNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStorePropertyNameConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStorePropertyValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStorePropertyValueConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreTypeToImageMonikerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreTypeToImageMonikerConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreTypeToRegTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreTypeToRegTypeConverter.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/SettingsStoreViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/SettingsStoreViewModel.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/Telemetry.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/TextBoxSelectionAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/TextBoxSelectionAdorner.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/TextBoxWithSelectionAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/TextBoxWithSelectionAdorner.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/VSPackage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/VSPackage.Designer.cs -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/VSPackage.resx -------------------------------------------------------------------------------- /src/SettingsStoreExplorer/VsThemeStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/SettingsStoreExplorer/VsThemeStyles.xaml -------------------------------------------------------------------------------- /src/VSIX/CustomImages.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/VSIX/CustomImages.vsct -------------------------------------------------------------------------------- /src/VSIX/SettingsStoreExplorerPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/VSIX/SettingsStoreExplorerPackage.vsct -------------------------------------------------------------------------------- /src/VSIX/VSIX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/VSIX/VSIX.csproj -------------------------------------------------------------------------------- /src/VSIX/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/VSIX/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/VSIX_Dev17/VSIX_Dev17.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/VSIX_Dev17/VSIX_Dev17.csproj -------------------------------------------------------------------------------- /src/VSIX_Dev17/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharring/SettingsStoreExplorer/HEAD/src/VSIX_Dev17/source.extension.vsixmanifest --------------------------------------------------------------------------------