├── .gitattributes ├── .gitignore ├── 00_Docu ├── screenshot.png └── screenshot_light.png ├── Backup └── XmlExplorerWpf.zip ├── LICENSE ├── README.md └── source ├── CleanAll.bat ├── Components ├── Settings │ ├── Settings │ │ ├── AppCore.cs │ │ ├── Interfaces │ │ │ ├── IAppCore.cs │ │ │ ├── IOptions.cs │ │ │ ├── IOptionsPanel.cs │ │ │ ├── IProfile.cs │ │ │ ├── ISettingsManager.cs │ │ │ └── IViewPosSizeModel.cs │ │ ├── Internal │ │ │ └── SettingsManagerImpl.cs │ │ ├── Module │ │ │ └── Installers.cs │ │ ├── ProgramSettings │ │ │ ├── LanguageCollection.cs │ │ │ └── OptionsPanel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SerializableDictionary.cs │ │ ├── Settings.csproj │ │ ├── SettingsManager.cs │ │ ├── UserProfile │ │ │ ├── IViewSize.cs │ │ │ ├── LocalizabilityAttribute.cs │ │ │ ├── Profile.cs │ │ │ ├── ViewPosSizeModel.cs │ │ │ └── ViewSize.cs │ │ └── packages.config │ └── SettingsModel │ │ ├── ExtensionMethods │ │ └── SecureStringExtensionMethod.cs │ │ ├── Interfaces │ │ ├── IEngine.cs │ │ ├── IOptionGroup.cs │ │ └── IOptionsSchema.cs │ │ ├── Models │ │ ├── Engine.cs │ │ ├── Factory.cs │ │ ├── FileReference.cs │ │ ├── OptionGroup.cs │ │ ├── OptionsSchema.cs │ │ └── XML │ │ │ ├── Converters │ │ │ ├── AlternativeDataTypeHandler.cs │ │ │ ├── IAlternativeDataTypeHandler.cs │ │ │ └── SecureStringHandler.cs │ │ │ └── XMLLayer.cs │ │ ├── Overview.cd │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SettingsModel.csproj │ │ └── packages.config ├── XmlExplorerLib │ ├── Controls │ │ ├── TreeViewStyleItems.xaml │ │ ├── XPathTreeView.xaml │ │ ├── XPathTreeView.xaml.cs │ │ ├── XPathTreeViewItem.xaml │ │ └── XPathTreeViewItem.xaml.cs │ ├── Converters │ │ ├── InvertedBooleanToVisibilityConverter.cs │ │ ├── XPathNavigatorAttributesConverter.cs │ │ └── XPathNavigatorItemsConverter.cs │ ├── Interfaces │ │ └── IXPathNavigator.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Templates │ │ └── XPathNodeTypeDataTemplateSelector.cs │ ├── Themes │ │ ├── DarkBrushs.xaml │ │ ├── Generic.xaml │ │ ├── LightBrushs.xaml │ │ └── ResourceKeys.cs │ └── XmlExplorerLib.csproj └── XmlExplorerVMLib │ ├── Behaviors │ └── DialogCloser.cs │ ├── Interfaces │ └── IDocumentViewModel.cs │ ├── Models │ ├── Error.cs │ └── Events │ │ └── EventArgs.cs │ ├── Modul │ └── Installer.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ViewModels │ ├── Base │ │ ├── BaseViewModel.cs │ │ └── RelayCommand.cs │ ├── DocumentViewModel.cs │ ├── XML │ │ ├── NamespaceDefinition.cs │ │ └── XPathNavigatoreTreeViewModel.cs │ └── XPathNavigatorViewModel .cs │ ├── Views │ └── BindingProxy.cs │ ├── XmlExplorerVMLib.csproj │ └── packages.config ├── GenericXmlExplorerDemo ├── 00_DataSamples │ └── XmlDataSampleDemo.xml ├── App.xaml ├── App.xaml.cs ├── GenericXmlExplorerDemo.csproj ├── Installers.cs ├── Interfaces │ └── IGenericAppViewModel.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── App.ico ├── ViewModels │ ├── Base │ │ ├── BaseViewModel.cs │ │ └── RelayCommand.cs │ └── GenericAppViewModel.cs ├── app.config └── packages.config ├── XmlExplorerDemo.sln ├── XmlExplorerDemo ├── 00_DataSamples │ └── XmlDataSampleDemo.xml ├── App.config ├── App.xaml ├── App.xaml.cs ├── Behaviors │ ├── MergeStyleBehaviour.cs │ └── TreeViewSelectionChangedBehavior.cs ├── BindToMLib │ ├── MWindowLib_DarkLightBrushs.xaml │ ├── UnitComboLib_DarkLightBrushs.xaml │ └── XmlExplorerLib_DarkLightBrushs.xaml ├── Installers.cs ├── Interfaces │ ├── IAppLifeCycleViewModel.cs │ ├── IAppViewModel.cs │ └── IThemesManagerViewModel.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ └── SettingDefaults.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── App.ico │ └── ProjectXML_16x.svg ├── ViewModels │ ├── AppLifeCycleViewModel.cs │ ├── AppViewModel.cs │ ├── Base │ │ ├── BaseViewModel.cs │ │ └── RelayCommand.cs │ ├── MRUViewModel.cs │ └── Themes │ │ ├── ThemeDefinitionViewModel.cs │ │ └── ThemesManagerViewModel.cs ├── XmlExplorerDemo.csproj └── packages.config └── packages ├── Castle.Core.4.3.1 ├── .signature.p7s ├── ASL - Apache Software Foundation License.txt ├── CHANGELOG.md ├── Castle.Core.4.3.1.nupkg ├── LICENSE ├── lib │ ├── net35 │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ ├── net40 │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ ├── net45 │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ ├── netstandard1.3 │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ └── netstandard1.5 │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml └── readme.txt ├── Castle.Windsor.4.1.1 ├── .signature.p7s ├── ASL - Apache Software Foundation License.txt ├── CHANGELOG.md ├── Castle.Windsor.4.1.1.nupkg ├── LICENSE └── lib │ ├── net45 │ ├── Castle.Windsor.dll │ └── Castle.Windsor.xml │ └── netstandard1.6 │ ├── Castle.Windsor.dll │ └── Castle.Windsor.xml ├── Dirkster.FileSystemModels.3.1.0 ├── Dirkster.FileSystemModels.3.1.0.nupkg └── lib │ └── net452 │ ├── FileSystemModels.dll │ ├── FileSystemModels.pdb │ ├── FileSystemModels.xml │ ├── de-DE │ └── FileSystemModels.resources.dll │ ├── es-ES │ └── FileSystemModels.resources.dll │ ├── fr-FR │ └── FileSystemModels.resources.dll │ ├── hi-IN │ └── FileSystemModels.resources.dll │ ├── it-IT │ └── FileSystemModels.resources.dll │ ├── ja-JP │ └── FileSystemModels.resources.dll │ ├── log4net.dll │ ├── log4net.xml │ ├── ru-RU │ └── FileSystemModels.resources.dll │ └── zh-CHS │ └── FileSystemModels.resources.dll ├── Dirkster.MLib.1.0.9.1 ├── .signature.p7s ├── Behavior_64x.png ├── Dirkster.MLib.1.0.9.1.nupkg ├── lib │ └── net4 │ │ ├── MLib.dll │ │ ├── MLib.pdb │ │ └── MLib.xml ├── license │ └── license.txt └── readme.txt ├── Dirkster.MRULib.1.0.2 ├── .signature.p7s ├── Dirkster.MRULib.1.0.2.nupkg ├── lib │ └── net451 │ │ ├── MRULib.dll │ │ ├── MRULib.pdb │ │ └── MRULib.xml └── readme.txt ├── Dirkster.MWindowLib.1.0.4.2 ├── Application_64x.png ├── Dirkster.MWindowLib.1.0.4.2.nupkg └── lib │ └── net452 │ ├── MWindowInterfacesLib.dll │ ├── MWindowInterfacesLib.pdb │ ├── MWindowInterfacesLib.xml │ ├── MWindowLib.dll │ ├── MWindowLib.pdb │ ├── MWindowLib.xml │ ├── Microsoft.Expression.Interactions.dll │ ├── Microsoft.Expression.Interactions.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml ├── Dirkster.UnitComboLib.1.0.1 ├── Dirkster.UnitComboLib.1.0.1.nupkg ├── lib │ └── net4 │ │ ├── UnitComboLib.dll │ │ ├── UnitComboLib.pdb │ │ ├── de-DE │ │ └── UnitComboLib.resources.dll │ │ ├── es-ES │ │ └── UnitComboLib.resources.dll │ │ ├── fr-FR │ │ └── UnitComboLib.resources.dll │ │ ├── hi-IN │ │ └── UnitComboLib.resources.dll │ │ ├── id-ID │ │ └── UnitComboLib.resources.dll │ │ ├── it-IT │ │ └── UnitComboLib.resources.dll │ │ ├── ja-JP │ │ └── UnitComboLib.resources.dll │ │ ├── pt-PT │ │ └── UnitComboLib.resources.dll │ │ ├── ru-RU │ │ └── UnitComboLib.resources.dll │ │ └── zh-Hans │ │ └── UnitComboLib.resources.dll └── readme.txt └── log4net.2.0.8 ├── .signature.p7s ├── lib ├── net20-full │ ├── log4net.dll │ └── log4net.xml ├── net35-client │ ├── log4net.dll │ └── log4net.xml ├── net35-full │ ├── log4net.dll │ └── log4net.xml ├── net40-client │ ├── log4net.dll │ └── log4net.xml ├── net40-full │ ├── log4net.dll │ └── log4net.xml ├── net45-full │ ├── log4net.dll │ └── log4net.xml └── netstandard1.3 │ └── log4net.dll └── log4net.2.0.8.nupkg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /00_Docu/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/00_Docu/screenshot.png -------------------------------------------------------------------------------- /00_Docu/screenshot_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/00_Docu/screenshot_light.png -------------------------------------------------------------------------------- /Backup/XmlExplorerWpf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/Backup/XmlExplorerWpf.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/README.md -------------------------------------------------------------------------------- /source/CleanAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/CleanAll.bat -------------------------------------------------------------------------------- /source/Components/Settings/Settings/AppCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/AppCore.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IAppCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Interfaces/IAppCore.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Interfaces/IOptions.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IOptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Interfaces/IOptionsPanel.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Interfaces/IProfile.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/ISettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Interfaces/ISettingsManager.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IViewPosSizeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Interfaces/IViewPosSizeModel.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Internal/SettingsManagerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Internal/SettingsManagerImpl.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Module/Installers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Module/Installers.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/ProgramSettings/LanguageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/ProgramSettings/LanguageCollection.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/ProgramSettings/OptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/ProgramSettings/OptionsPanel.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/SerializableDictionary.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Settings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/Settings.csproj -------------------------------------------------------------------------------- /source/Components/Settings/Settings/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/SettingsManager.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/IViewSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/UserProfile/IViewSize.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/LocalizabilityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/UserProfile/LocalizabilityAttribute.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/UserProfile/Profile.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/ViewPosSizeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/UserProfile/ViewPosSizeModel.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/ViewSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/UserProfile/ViewSize.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/Settings/packages.config -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/ExtensionMethods/SecureStringExtensionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/ExtensionMethods/SecureStringExtensionMethod.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Interfaces/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Interfaces/IEngine.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Interfaces/IOptionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Interfaces/IOptionGroup.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Interfaces/IOptionsSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Interfaces/IOptionsSchema.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/Engine.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/Factory.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/FileReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/FileReference.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/OptionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/OptionGroup.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/OptionsSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/OptionsSchema.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/XML/Converters/AlternativeDataTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/XML/Converters/AlternativeDataTypeHandler.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/XML/Converters/IAlternativeDataTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/XML/Converters/IAlternativeDataTypeHandler.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/XML/Converters/SecureStringHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/XML/Converters/SecureStringHandler.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/XML/XMLLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Models/XML/XMLLayer.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Overview.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Overview.cd -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/SettingsModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/SettingsModel.csproj -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/Settings/SettingsModel/packages.config -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Controls/TreeViewStyleItems.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Controls/TreeViewStyleItems.xaml -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Controls/XPathTreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Controls/XPathTreeView.xaml -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Controls/XPathTreeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Controls/XPathTreeView.xaml.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Controls/XPathTreeViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Controls/XPathTreeViewItem.xaml -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Controls/XPathTreeViewItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Controls/XPathTreeViewItem.xaml.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Converters/InvertedBooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Converters/InvertedBooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Converters/XPathNavigatorAttributesConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Converters/XPathNavigatorAttributesConverter.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Converters/XPathNavigatorItemsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Converters/XPathNavigatorItemsConverter.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Interfaces/IXPathNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Interfaces/IXPathNavigator.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Properties/Resources.resx -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Properties/Settings.settings -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Templates/XPathNodeTypeDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Templates/XPathNodeTypeDataTemplateSelector.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Themes/DarkBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Themes/DarkBrushs.xaml -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Themes/Generic.xaml -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Themes/LightBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Themes/LightBrushs.xaml -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/Themes/ResourceKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/Themes/ResourceKeys.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerLib/XmlExplorerLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerLib/XmlExplorerLib.csproj -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/Behaviors/DialogCloser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/Behaviors/DialogCloser.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/Interfaces/IDocumentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/Interfaces/IDocumentViewModel.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/Models/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/Models/Error.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/Models/Events/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/Models/Events/EventArgs.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/Modul/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/Modul/Installer.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/ViewModels/Base/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/ViewModels/Base/BaseViewModel.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/ViewModels/Base/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/ViewModels/Base/RelayCommand.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/ViewModels/DocumentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/ViewModels/DocumentViewModel.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/ViewModels/XML/NamespaceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/ViewModels/XML/NamespaceDefinition.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/ViewModels/XML/XPathNavigatoreTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/ViewModels/XML/XPathNavigatoreTreeViewModel.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/ViewModels/XPathNavigatorViewModel .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/ViewModels/XPathNavigatorViewModel .cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/Views/BindingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/Views/BindingProxy.cs -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/XmlExplorerVMLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/XmlExplorerVMLib.csproj -------------------------------------------------------------------------------- /source/Components/XmlExplorerVMLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/Components/XmlExplorerVMLib/packages.config -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/00_DataSamples/XmlDataSampleDemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/00_DataSamples/XmlDataSampleDemo.xml -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/App.xaml -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/App.xaml.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/GenericXmlExplorerDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/GenericXmlExplorerDemo.csproj -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/Installers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/Installers.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/Interfaces/IGenericAppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/Interfaces/IGenericAppViewModel.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/MainWindow.xaml -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/Resources/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/Resources/App.ico -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/ViewModels/Base/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/ViewModels/Base/BaseViewModel.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/ViewModels/Base/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/ViewModels/Base/RelayCommand.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/ViewModels/GenericAppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/ViewModels/GenericAppViewModel.cs -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/app.config -------------------------------------------------------------------------------- /source/GenericXmlExplorerDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/GenericXmlExplorerDemo/packages.config -------------------------------------------------------------------------------- /source/XmlExplorerDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo.sln -------------------------------------------------------------------------------- /source/XmlExplorerDemo/00_DataSamples/XmlDataSampleDemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/00_DataSamples/XmlDataSampleDemo.xml -------------------------------------------------------------------------------- /source/XmlExplorerDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/App.config -------------------------------------------------------------------------------- /source/XmlExplorerDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/App.xaml -------------------------------------------------------------------------------- /source/XmlExplorerDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/App.xaml.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Behaviors/MergeStyleBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Behaviors/MergeStyleBehaviour.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Behaviors/TreeViewSelectionChangedBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Behaviors/TreeViewSelectionChangedBehavior.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/BindToMLib/MWindowLib_DarkLightBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/BindToMLib/MWindowLib_DarkLightBrushs.xaml -------------------------------------------------------------------------------- /source/XmlExplorerDemo/BindToMLib/UnitComboLib_DarkLightBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/BindToMLib/UnitComboLib_DarkLightBrushs.xaml -------------------------------------------------------------------------------- /source/XmlExplorerDemo/BindToMLib/XmlExplorerLib_DarkLightBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/BindToMLib/XmlExplorerLib_DarkLightBrushs.xaml -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Installers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Installers.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Interfaces/IAppLifeCycleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Interfaces/IAppLifeCycleViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Interfaces/IAppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Interfaces/IAppViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Interfaces/IThemesManagerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Interfaces/IThemesManagerViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/MainWindow.xaml -------------------------------------------------------------------------------- /source/XmlExplorerDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Models/SettingDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Models/SettingDefaults.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Resources/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Resources/App.ico -------------------------------------------------------------------------------- /source/XmlExplorerDemo/Resources/ProjectXML_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/Resources/ProjectXML_16x.svg -------------------------------------------------------------------------------- /source/XmlExplorerDemo/ViewModels/AppLifeCycleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/ViewModels/AppLifeCycleViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/ViewModels/AppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/ViewModels/AppViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/ViewModels/Base/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/ViewModels/Base/BaseViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/ViewModels/Base/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/ViewModels/Base/RelayCommand.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/ViewModels/MRUViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/ViewModels/MRUViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/ViewModels/Themes/ThemeDefinitionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/ViewModels/Themes/ThemeDefinitionViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/ViewModels/Themes/ThemesManagerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/ViewModels/Themes/ThemesManagerViewModel.cs -------------------------------------------------------------------------------- /source/XmlExplorerDemo/XmlExplorerDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/XmlExplorerDemo.csproj -------------------------------------------------------------------------------- /source/XmlExplorerDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/XmlExplorerDemo/packages.config -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/.signature.p7s -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/ASL - Apache Software Foundation License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/ASL - Apache Software Foundation License.txt -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/CHANGELOG.md -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/Castle.Core.4.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/Castle.Core.4.3.1.nupkg -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/LICENSE -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/net35/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/net35/Castle.Core.dll -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/net35/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/net35/Castle.Core.xml -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/net40/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/net40/Castle.Core.dll -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/net40/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/net40/Castle.Core.xml -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/net45/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/net45/Castle.Core.dll -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/net45/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/net45/Castle.Core.xml -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/netstandard1.3/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/netstandard1.3/Castle.Core.dll -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/netstandard1.3/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/netstandard1.3/Castle.Core.xml -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/netstandard1.5/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/netstandard1.5/Castle.Core.dll -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/lib/netstandard1.5/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/lib/netstandard1.5/Castle.Core.xml -------------------------------------------------------------------------------- /source/packages/Castle.Core.4.3.1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Core.4.3.1/readme.txt -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/.signature.p7s -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/ASL - Apache Software Foundation License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/ASL - Apache Software Foundation License.txt -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/CHANGELOG.md -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/Castle.Windsor.4.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/Castle.Windsor.4.1.1.nupkg -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/LICENSE -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/lib/net45/Castle.Windsor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/lib/net45/Castle.Windsor.dll -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/lib/net45/Castle.Windsor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/lib/net45/Castle.Windsor.xml -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/lib/netstandard1.6/Castle.Windsor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/lib/netstandard1.6/Castle.Windsor.dll -------------------------------------------------------------------------------- /source/packages/Castle.Windsor.4.1.1/lib/netstandard1.6/Castle.Windsor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Castle.Windsor.4.1.1/lib/netstandard1.6/Castle.Windsor.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/Dirkster.FileSystemModels.3.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/Dirkster.FileSystemModels.3.1.0.nupkg -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/FileSystemModels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/FileSystemModels.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/FileSystemModels.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/FileSystemModels.pdb -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/FileSystemModels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/FileSystemModels.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/de-DE/FileSystemModels.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/de-DE/FileSystemModels.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/es-ES/FileSystemModels.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/es-ES/FileSystemModels.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/fr-FR/FileSystemModels.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/fr-FR/FileSystemModels.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/hi-IN/FileSystemModels.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/hi-IN/FileSystemModels.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/it-IT/FileSystemModels.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/it-IT/FileSystemModels.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/ja-JP/FileSystemModels.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/ja-JP/FileSystemModels.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/log4net.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/log4net.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/ru-RU/FileSystemModels.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/ru-RU/FileSystemModels.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/zh-CHS/FileSystemModels.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.FileSystemModels.3.1.0/lib/net452/zh-CHS/FileSystemModels.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.MLib.1.0.9.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MLib.1.0.9.1/.signature.p7s -------------------------------------------------------------------------------- /source/packages/Dirkster.MLib.1.0.9.1/Behavior_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MLib.1.0.9.1/Behavior_64x.png -------------------------------------------------------------------------------- /source/packages/Dirkster.MLib.1.0.9.1/Dirkster.MLib.1.0.9.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MLib.1.0.9.1/Dirkster.MLib.1.0.9.1.nupkg -------------------------------------------------------------------------------- /source/packages/Dirkster.MLib.1.0.9.1/lib/net4/MLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MLib.1.0.9.1/lib/net4/MLib.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.MLib.1.0.9.1/lib/net4/MLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MLib.1.0.9.1/lib/net4/MLib.pdb -------------------------------------------------------------------------------- /source/packages/Dirkster.MLib.1.0.9.1/lib/net4/MLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MLib.1.0.9.1/lib/net4/MLib.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.MLib.1.0.9.1/license/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MLib.1.0.9.1/license/license.txt -------------------------------------------------------------------------------- /source/packages/Dirkster.MLib.1.0.9.1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MLib.1.0.9.1/readme.txt -------------------------------------------------------------------------------- /source/packages/Dirkster.MRULib.1.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MRULib.1.0.2/.signature.p7s -------------------------------------------------------------------------------- /source/packages/Dirkster.MRULib.1.0.2/Dirkster.MRULib.1.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MRULib.1.0.2/Dirkster.MRULib.1.0.2.nupkg -------------------------------------------------------------------------------- /source/packages/Dirkster.MRULib.1.0.2/lib/net451/MRULib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MRULib.1.0.2/lib/net451/MRULib.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.MRULib.1.0.2/lib/net451/MRULib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MRULib.1.0.2/lib/net451/MRULib.pdb -------------------------------------------------------------------------------- /source/packages/Dirkster.MRULib.1.0.2/lib/net451/MRULib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MRULib.1.0.2/lib/net451/MRULib.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.MRULib.1.0.2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MRULib.1.0.2/readme.txt -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/Application_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/Application_64x.png -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/Dirkster.MWindowLib.1.0.4.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/Dirkster.MWindowLib.1.0.4.2.nupkg -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowInterfacesLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowInterfacesLib.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowInterfacesLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowInterfacesLib.pdb -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowInterfacesLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowInterfacesLib.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowLib.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowLib.pdb -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/MWindowLib.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/Microsoft.Expression.Interactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/Microsoft.Expression.Interactions.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/Microsoft.Expression.Interactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/Microsoft.Expression.Interactions.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.MWindowLib.1.0.4.2/lib/net452/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/Dirkster.UnitComboLib.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/Dirkster.UnitComboLib.1.0.1.nupkg -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/UnitComboLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/UnitComboLib.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/UnitComboLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/UnitComboLib.pdb -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/de-DE/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/de-DE/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/es-ES/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/es-ES/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/fr-FR/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/fr-FR/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/hi-IN/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/hi-IN/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/id-ID/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/id-ID/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/it-IT/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/it-IT/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/ja-JP/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/ja-JP/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/pt-PT/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/pt-PT/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/ru-RU/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/ru-RU/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/zh-Hans/UnitComboLib.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/lib/net4/zh-Hans/UnitComboLib.resources.dll -------------------------------------------------------------------------------- /source/packages/Dirkster.UnitComboLib.1.0.1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/Dirkster.UnitComboLib.1.0.1/readme.txt -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/.signature.p7s -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net20-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net20-full/log4net.dll -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net20-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net20-full/log4net.xml -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net35-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net35-client/log4net.dll -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net35-client/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net35-client/log4net.xml -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net35-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net35-full/log4net.dll -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net35-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net35-full/log4net.xml -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net40-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net40-client/log4net.dll -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net40-client/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net40-client/log4net.xml -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net40-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net40-full/log4net.dll -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net40-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net40-full/log4net.xml -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net45-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net45-full/log4net.dll -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/net45-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/net45-full/log4net.xml -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/lib/netstandard1.3/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/lib/netstandard1.3/log4net.dll -------------------------------------------------------------------------------- /source/packages/log4net.2.0.8/log4net.2.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/XmlExplorer/HEAD/source/packages/log4net.2.0.8/log4net.2.0.8.nupkg --------------------------------------------------------------------------------