├── .gitattributes ├── .gitignore ├── README.md ├── Xcom2CheatFileCreator.sln ├── Xcom2CheatFileCreator.v12.suo ├── Xcom2CheatFileCreator ├── App.config ├── App.xaml ├── App.xaml.cs ├── LWClass.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Nuvola_apps_kservices.png ├── Nuvola_apps_question.png ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── Settings.xaml ├── Settings.xaml.cs ├── Soldier.cs ├── SoldierCSVReader.cs ├── SoldierClass.cs ├── SoldierTextFileGenerator.cs ├── WotCClass.cs ├── Xcom2CheatFileCreator.csproj ├── Xcom2CheatFileCreator.csproj.user ├── Xcom2CheatFileCreator.sln ├── cheatfiletemplate.csv ├── packages.config ├── packages │ ├── CsvHelper.2.16.3.0 │ │ ├── CsvHelper.2.16.3.0.nupkg │ │ └── lib │ │ │ ├── net20 │ │ │ ├── CsvHelper.dll │ │ │ └── CsvHelper.xml │ │ │ ├── net35 │ │ │ ├── CsvHelper.dll │ │ │ └── CsvHelper.xml │ │ │ ├── net40 │ │ │ ├── CsvHelper.dll │ │ │ └── CsvHelper.xml │ │ │ ├── net45 │ │ │ ├── CsvHelper.dll │ │ │ └── CsvHelper.xml │ │ │ ├── netstandard1.3 │ │ │ ├── CsvHelper.dll │ │ │ └── CsvHelper.xml │ │ │ └── portable40-net40+sl5+win8+wp8+wpa81 │ │ │ ├── CsvHelper.dll │ │ │ └── CsvHelper.xml │ └── MahApps.Metro.1.5.0 │ │ ├── MahApps.Metro.1.5.0.nupkg │ │ ├── lib │ │ ├── net40 │ │ │ ├── MahApps.Metro.XML │ │ │ ├── MahApps.Metro.dll │ │ │ └── System.Windows.Interactivity.dll │ │ └── net45 │ │ │ ├── MahApps.Metro.XML │ │ │ ├── MahApps.Metro.dll │ │ │ └── System.Windows.Interactivity.dll │ │ └── tools │ │ └── install.ps1 ├── settings.csv └── soldierClass.csv └── packages ├── CsvHelper.2.16.3.0 ├── CsvHelper.2.16.3.0.nupkg └── lib │ ├── net20 │ ├── CsvHelper.dll │ └── CsvHelper.xml │ ├── net35 │ ├── CsvHelper.dll │ └── CsvHelper.xml │ ├── net40 │ ├── CsvHelper.dll │ └── CsvHelper.xml │ ├── net45 │ ├── CsvHelper.dll │ └── CsvHelper.xml │ ├── netstandard1.3 │ ├── CsvHelper.dll │ └── CsvHelper.xml │ └── portable40-net40+sl5+win8+wp8+wpa81 │ ├── CsvHelper.dll │ └── CsvHelper.xml ├── MahApps.Metro.1.3.0 ├── MahApps.Metro.1.3.0.nupkg ├── lib │ ├── net40 │ │ ├── MahApps.Metro.XML │ │ ├── MahApps.Metro.dll │ │ ├── MahApps.Metro.pdb │ │ └── System.Windows.Interactivity.dll │ └── net45 │ │ ├── MahApps.Metro.XML │ │ ├── MahApps.Metro.dll │ │ ├── MahApps.Metro.pdb │ │ └── System.Windows.Interactivity.dll └── tools │ └── install.ps1 ├── MahApps.Metro.1.4.1 ├── MahApps.Metro.1.4.1.nupkg ├── lib │ ├── net40 │ │ ├── MahApps.Metro.XML │ │ ├── MahApps.Metro.dll │ │ ├── MahApps.Metro.pdb │ │ └── System.Windows.Interactivity.dll │ └── net45 │ │ ├── MahApps.Metro.XML │ │ ├── MahApps.Metro.dll │ │ ├── MahApps.Metro.pdb │ │ └── System.Windows.Interactivity.dll └── tools │ └── install.ps1 ├── MahApps.Metro.1.5.0 ├── MahApps.Metro.1.5.0.nupkg ├── lib │ ├── net40 │ │ ├── MahApps.Metro.XML │ │ ├── MahApps.Metro.dll │ │ └── System.Windows.Interactivity.dll │ └── net45 │ │ ├── MahApps.Metro.XML │ │ ├── MahApps.Metro.dll │ │ └── System.Windows.Interactivity.dll └── tools │ └── install.ps1 └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/README.md -------------------------------------------------------------------------------- /Xcom2CheatFileCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator.sln -------------------------------------------------------------------------------- /Xcom2CheatFileCreator.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator.v12.suo -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/App.config -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/App.xaml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/App.xaml.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/LWClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/LWClass.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/MainWindow.xaml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Nuvola_apps_kservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Nuvola_apps_kservices.png -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Nuvola_apps_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Nuvola_apps_question.png -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Properties/Resources.resx -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Properties/Settings.settings -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/README.md -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Settings.xaml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Settings.xaml.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Soldier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Soldier.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/SoldierCSVReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/SoldierCSVReader.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/SoldierClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/SoldierClass.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/SoldierTextFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/SoldierTextFileGenerator.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/WotCClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/WotCClass.cs -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Xcom2CheatFileCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Xcom2CheatFileCreator.csproj -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Xcom2CheatFileCreator.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Xcom2CheatFileCreator.csproj.user -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/Xcom2CheatFileCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/Xcom2CheatFileCreator.sln -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/cheatfiletemplate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/cheatfiletemplate.csv -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages.config -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/CsvHelper.2.16.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/CsvHelper.2.16.3.0.nupkg -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net20/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net20/CsvHelper.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net20/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net20/CsvHelper.xml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net35/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net35/CsvHelper.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net35/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net35/CsvHelper.xml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net40/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net40/CsvHelper.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net40/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net40/CsvHelper.xml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net45/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net45/CsvHelper.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net45/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/net45/CsvHelper.xml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/netstandard1.3/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/netstandard1.3/CsvHelper.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/netstandard1.3/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/netstandard1.3/CsvHelper.xml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/portable40-net40+sl5+win8+wp8+wpa81/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/portable40-net40+sl5+win8+wp8+wpa81/CsvHelper.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/portable40-net40+sl5+win8+wp8+wpa81/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/CsvHelper.2.16.3.0/lib/portable40-net40+sl5+win8+wp8+wpa81/CsvHelper.xml -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/MahApps.Metro.1.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/MahApps.Metro.1.5.0.nupkg -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.XML -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.XML -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/lib/net45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/packages/MahApps.Metro.1.5.0/tools/install.ps1 -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/settings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/settings.csv -------------------------------------------------------------------------------- /Xcom2CheatFileCreator/soldierClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/Xcom2CheatFileCreator/soldierClass.csv -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/CsvHelper.2.16.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/CsvHelper.2.16.3.0.nupkg -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/net20/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/net20/CsvHelper.dll -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/net20/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/net20/CsvHelper.xml -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/net35/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/net35/CsvHelper.dll -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/net35/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/net35/CsvHelper.xml -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/net40/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/net40/CsvHelper.dll -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/net40/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/net40/CsvHelper.xml -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/net45/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/net45/CsvHelper.dll -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/net45/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/net45/CsvHelper.xml -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/netstandard1.3/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/netstandard1.3/CsvHelper.dll -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/netstandard1.3/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/netstandard1.3/CsvHelper.xml -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/portable40-net40+sl5+win8+wp8+wpa81/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/portable40-net40+sl5+win8+wp8+wpa81/CsvHelper.dll -------------------------------------------------------------------------------- /packages/CsvHelper.2.16.3.0/lib/portable40-net40+sl5+win8+wp8+wpa81/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/CsvHelper.2.16.3.0/lib/portable40-net40+sl5+win8+wp8+wpa81/CsvHelper.xml -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/MahApps.Metro.1.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/MahApps.Metro.1.3.0.nupkg -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/lib/net40/MahApps.Metro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/lib/net40/MahApps.Metro.XML -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/lib/net40/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/lib/net40/MahApps.Metro.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/lib/net40/MahApps.Metro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/lib/net40/MahApps.Metro.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/lib/net45/MahApps.Metro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/lib/net45/MahApps.Metro.XML -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/lib/net45/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/lib/net45/MahApps.Metro.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/lib/net45/MahApps.Metro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/lib/net45/MahApps.Metro.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/lib/net45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/lib/net45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.3.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.3.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/MahApps.Metro.1.4.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/MahApps.Metro.1.4.1.nupkg -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/lib/net40/MahApps.Metro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/lib/net40/MahApps.Metro.XML -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/lib/net40/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/lib/net40/MahApps.Metro.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/lib/net40/MahApps.Metro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/lib/net40/MahApps.Metro.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/lib/net45/MahApps.Metro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/lib/net45/MahApps.Metro.XML -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/lib/net45/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/lib/net45/MahApps.Metro.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/lib/net45/MahApps.Metro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/lib/net45/MahApps.Metro.pdb -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/lib/net45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/lib/net45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.4.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.4.1/tools/install.ps1 -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.5.0/MahApps.Metro.1.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.5.0/MahApps.Metro.1.5.0.nupkg -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.XML -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.5.0/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.5.0/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.XML -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.5.0/lib/net45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.5.0/lib/net45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /packages/MahApps.Metro.1.5.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/MahApps.Metro.1.5.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMob4313/Xcom2CheatFileCreator/HEAD/packages/repositories.config --------------------------------------------------------------------------------