├── .gitattributes ├── .gitignore ├── LICENSE ├── ModSorter.sln ├── ModSorter ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Mod.cs ├── ModSorter.csproj ├── Ookii.Dialogs.WPF_license.txt ├── Ookii.Dialogs.Wpf.dll ├── Ookii.Dialogs.dll ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── XmlFileReaderUtility.cs ├── app.config └── kofi.png ├── README.md └── modsorter.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/LICENSE -------------------------------------------------------------------------------- /ModSorter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter.sln -------------------------------------------------------------------------------- /ModSorter/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/App.xaml -------------------------------------------------------------------------------- /ModSorter/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/App.xaml.cs -------------------------------------------------------------------------------- /ModSorter/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/MainWindow.xaml -------------------------------------------------------------------------------- /ModSorter/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ModSorter/Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Mod.cs -------------------------------------------------------------------------------- /ModSorter/ModSorter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/ModSorter.csproj -------------------------------------------------------------------------------- /ModSorter/Ookii.Dialogs.WPF_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Ookii.Dialogs.WPF_license.txt -------------------------------------------------------------------------------- /ModSorter/Ookii.Dialogs.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Ookii.Dialogs.Wpf.dll -------------------------------------------------------------------------------- /ModSorter/Ookii.Dialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Ookii.Dialogs.dll -------------------------------------------------------------------------------- /ModSorter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ModSorter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ModSorter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Properties/Resources.resx -------------------------------------------------------------------------------- /ModSorter/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ModSorter/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/Properties/Settings.settings -------------------------------------------------------------------------------- /ModSorter/XmlFileReaderUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/XmlFileReaderUtility.cs -------------------------------------------------------------------------------- /ModSorter/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/app.config -------------------------------------------------------------------------------- /ModSorter/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/ModSorter/kofi.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/README.md -------------------------------------------------------------------------------- /modsorter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehni/ModSorter/HEAD/modsorter.gif --------------------------------------------------------------------------------