gitextract_gz0lcu5f/ ├── .gitignore ├── CustomAnalysisRules.Test.ruleset ├── CustomAnalysisRules.ruleset ├── Directory.Build.props ├── LICENSE ├── README.md ├── StartMenuManager.sln ├── src/ │ ├── HL/ │ │ ├── AssemblyInfo.cs │ │ ├── HL.csproj │ │ ├── HighlightingTheme/ │ │ │ ├── GlobalStyle.cs │ │ │ └── SyntaxDefinition.cs │ │ ├── Interfaces/ │ │ │ ├── IHLTheme.cs │ │ │ └── IThemedHighlightingManager.cs │ │ ├── LICENSE │ │ ├── Manager/ │ │ │ ├── BusyManager.cs │ │ │ ├── DefaultHighlightingManager.cs │ │ │ ├── DelayLoadedHighlightingDefinition.cs │ │ │ ├── ExtensionMethods.cs │ │ │ ├── HLTheme.cs │ │ │ ├── HighlightingBrush.cs │ │ │ ├── HighlightingLoader.cs │ │ │ ├── HighlightingThemeLoader.cs │ │ │ ├── ThemedHighlightingManager.cs │ │ │ ├── V2Loader.cs │ │ │ ├── XmlHighlightingDefinition.cs │ │ │ └── XshtdLoader.cs │ │ ├── Modes/ │ │ │ ├── ModeV1.xsd │ │ │ ├── ModeV2.xsd │ │ │ └── ModeV2_htd.xsd │ │ ├── Resources/ │ │ │ ├── HLResources.cs │ │ │ ├── Light/ │ │ │ │ ├── AS3.xshd │ │ │ │ ├── ASPX.xshd │ │ │ │ ├── Boo.xshd │ │ │ │ ├── CPP-Mode.xshd │ │ │ │ ├── CSS-Mode.xshd │ │ │ │ ├── CSharp-Mode.xshd │ │ │ │ ├── Coco-Mode.xshd │ │ │ │ ├── DOSBATCH.xshd │ │ │ │ ├── FSharp-Mode.xshd │ │ │ │ ├── GRazor-Mode.xshd │ │ │ │ ├── Gcode.xshd │ │ │ │ ├── HLSL.xshd │ │ │ │ ├── HTML-Mode.xshd │ │ │ │ ├── INI.xshd │ │ │ │ ├── Java-Mode.xshd │ │ │ │ ├── JavaScript-Mode.xshd │ │ │ │ ├── Log.xshd │ │ │ │ ├── MarkDown-Mode.xshd │ │ │ │ ├── PHP-Mode.xshd │ │ │ │ ├── PLSQL.xshd │ │ │ │ ├── Pascal.xshd │ │ │ │ ├── Patch-Mode.xshd │ │ │ │ ├── PowerShell.xshd │ │ │ │ ├── Python-Mode.xshd │ │ │ │ ├── Ruby.xshd │ │ │ │ ├── TSQL-Mode.xshd │ │ │ │ ├── TXT.xshd │ │ │ │ ├── Tex-Mode.xshd │ │ │ │ ├── VB-Mode.xshd │ │ │ │ ├── XML-Mode.xshd │ │ │ │ ├── XmlDoc.xshd │ │ │ │ ├── scheme.xshd │ │ │ │ ├── squirrel.xshd │ │ │ │ └── vtl.xshd │ │ │ └── Themes/ │ │ │ ├── Dark.xshtd │ │ │ ├── TrueBlue.xshtd │ │ │ └── VS2019_Dark.xshtd │ │ └── Xshtd/ │ │ ├── IXshtdVisitor.cs │ │ ├── XhstdThemeDefinition.cs │ │ ├── XmlHighlightingThemeDefinition.cs │ │ ├── XshtdColor.cs │ │ ├── XshtdElement.cs │ │ ├── XshtdGlobalStyle.cs │ │ ├── XshtdGlobalStyles.cs │ │ ├── XshtdSyntaxDefinition.cs │ │ └── interfaces/ │ │ ├── IFreezable.cs │ │ ├── IHighlightingDefinitionReferenceResolver.cs │ │ └── IHighlightingThemeDefinition.cs │ ├── StartMenuManager.Builder/ │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── StartMenuManager.Builder.csproj │ ├── StartMenuManager.Core/ │ │ ├── DataStructures/ │ │ │ ├── Action.cs │ │ │ ├── Actions/ │ │ │ │ ├── CommandAction.cs │ │ │ │ ├── FileAction.cs │ │ │ │ ├── FolderAction.cs │ │ │ │ ├── SoftwareAction.cs │ │ │ │ └── WebsiteAction.cs │ │ │ ├── Config.cs │ │ │ ├── SettingsConfig.cs │ │ │ ├── Shortcut.cs │ │ │ └── ValidationError.cs │ │ ├── Serialization/ │ │ │ └── Serializer.cs │ │ └── StartMenuManager.Core.csproj │ ├── StartMenuManager.GUI/ │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Builder.cs │ │ ├── Dialogs/ │ │ │ ├── MessageDialog.cs │ │ │ ├── SettingsDialog.cs │ │ │ └── YesNoDialog.cs │ │ ├── Extensions/ │ │ │ └── ActionExtensions.cs │ │ ├── IconExtractorWindow.xaml │ │ ├── IconExtractorWindow.xaml.cs │ │ ├── JsonViewManager.cs │ │ ├── LowerMenuBar.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Runner.cs │ │ ├── Serialization/ │ │ │ ├── IconManager.cs │ │ │ └── JsonSerializer.cs │ │ ├── ShortcutControl.xaml │ │ ├── ShortcutControl.xaml.cs │ │ ├── ShortcutListArea.cs │ │ ├── StartMenuManager.GUI.csproj │ │ ├── Structures/ │ │ │ ├── DialogTypes.cs │ │ │ └── ShortcutType.cs │ │ ├── SubShortcutControl.xaml │ │ ├── SubShortcutControl.xaml.cs │ │ ├── TitleBarButtons.cs │ │ ├── Utils/ │ │ │ ├── DialogManager.cs │ │ │ ├── IconExtractorWindow_TitleBarControl.cs │ │ │ ├── ThemeManager.cs │ │ │ ├── TitleBarControl.cs │ │ │ └── WindowRef.cs │ │ ├── WelcomeCard.cs │ │ └── app.manifest │ ├── StartMenuManager.GUI.Installer/ │ │ ├── Product.wxs │ │ ├── StartMenuManager.GUI.Installer.wixproj │ │ └── netchecker.wxs │ ├── StartMenuManager.PreUninstall/ │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── StartMenuManager.PreUninstall.csproj │ ├── StartMenuManager.Runner/ │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── StartMenuManager.Runner.csproj │ └── TextEditLib/ │ ├── AssemblyInfo.cs │ ├── Extensions/ │ │ └── HighlightCurrentLineBackgroundRenderer.cs │ ├── TextEdit.xaml │ ├── TextEdit.xaml.cs │ ├── TextEditLib.csproj │ └── Themes/ │ ├── DarkBrushs.xaml │ ├── Generic.xaml │ ├── Icons.xaml │ ├── LightBrushs.xaml │ └── ResourceKeys.cs └── stylecop.json