diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..dfe0770
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,2 @@
+# Auto detect text files and perform LF normalization
+* text=auto
diff --git a/App.config b/App.config
new file mode 100644
index 0000000..731f6de
--- /dev/null
+++ b/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Main.Designer.cs b/Main.Designer.cs
new file mode 100644
index 0000000..252eb81
--- /dev/null
+++ b/Main.Designer.cs
@@ -0,0 +1,187 @@
+namespace Tweak_Installer
+{
+ partial class Main
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.install = new System.Windows.Forms.Button();
+ this.Uninstall = new System.Windows.Forms.Button();
+ this.host = new System.Windows.Forms.TextBox();
+ this.pass = new System.Windows.Forms.TextBox();
+ this.username = new System.Windows.Forms.TextBox();
+ this.label1 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.label3 = new System.Windows.Forms.Label();
+ this.label4 = new System.Windows.Forms.Label();
+ this.deb = new System.Windows.Forms.TextBox();
+ this.select = new System.Windows.Forms.Button();
+ this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
+ this.SuspendLayout();
+ //
+ // install
+ //
+ this.install.Location = new System.Drawing.Point(12, 201);
+ this.install.Name = "install";
+ this.install.Size = new System.Drawing.Size(96, 23);
+ this.install.TabIndex = 0;
+ this.install.Text = "Install";
+ this.install.UseVisualStyleBackColor = true;
+ this.install.Click += new System.EventHandler(this.install_Click);
+ //
+ // Uninstall
+ //
+ this.Uninstall.Location = new System.Drawing.Point(114, 201);
+ this.Uninstall.Name = "Uninstall";
+ this.Uninstall.Size = new System.Drawing.Size(95, 23);
+ this.Uninstall.TabIndex = 1;
+ this.Uninstall.Text = "Uninstall";
+ this.Uninstall.UseVisualStyleBackColor = true;
+ this.Uninstall.Click += new System.EventHandler(this.Uninstall_Click);
+ //
+ // host
+ //
+ this.host.Location = new System.Drawing.Point(12, 29);
+ this.host.Name = "host";
+ this.host.Size = new System.Drawing.Size(197, 20);
+ this.host.TabIndex = 2;
+ this.host.TextChanged += new System.EventHandler(this.host_TextChanged);
+ //
+ // pass
+ //
+ this.pass.Location = new System.Drawing.Point(12, 107);
+ this.pass.Name = "pass";
+ this.pass.Size = new System.Drawing.Size(197, 20);
+ this.pass.TabIndex = 3;
+ this.pass.TextChanged += new System.EventHandler(this.pass_TextChanged);
+ //
+ // username
+ //
+ this.username.Location = new System.Drawing.Point(12, 68);
+ this.username.Name = "username";
+ this.username.Size = new System.Drawing.Size(197, 20);
+ this.username.TabIndex = 4;
+ this.username.TextChanged += new System.EventHandler(this.username_TextChanged);
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(12, 13);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(27, 13);
+ this.label1.TabIndex = 5;
+ this.label1.Text = "host";
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(12, 52);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(27, 13);
+ this.label2.TabIndex = 6;
+ this.label2.Text = "user";
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(12, 91);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(29, 13);
+ this.label3.TabIndex = 7;
+ this.label3.Text = "pass";
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Location = new System.Drawing.Point(12, 130);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(25, 13);
+ this.label4.TabIndex = 8;
+ this.label4.Text = "deb";
+ //
+ // deb
+ //
+ this.deb.Location = new System.Drawing.Point(12, 146);
+ this.deb.Name = "deb";
+ this.deb.Size = new System.Drawing.Size(197, 20);
+ this.deb.TabIndex = 9;
+ //
+ // select
+ //
+ this.select.Location = new System.Drawing.Point(12, 172);
+ this.select.Name = "select";
+ this.select.Size = new System.Drawing.Size(197, 23);
+ this.select.TabIndex = 10;
+ this.select.Text = "Select Deb";
+ this.select.UseVisualStyleBackColor = true;
+ this.select.Click += new System.EventHandler(this.select_Click);
+ //
+ // openFileDialog
+ //
+ this.openFileDialog.FileName = "example.deb";
+ //
+ // Main
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(221, 230);
+ this.Controls.Add(this.select);
+ this.Controls.Add(this.deb);
+ this.Controls.Add(this.label4);
+ this.Controls.Add(this.label3);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.label1);
+ this.Controls.Add(this.username);
+ this.Controls.Add(this.pass);
+ this.Controls.Add(this.host);
+ this.Controls.Add(this.Uninstall);
+ this.Controls.Add(this.install);
+ this.Name = "Main";
+ this.ShowIcon = false;
+ this.Text = "Tweak Installer";
+ this.Load += new System.EventHandler(this.Main_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button install;
+ private System.Windows.Forms.Button Uninstall;
+ private System.Windows.Forms.TextBox host;
+ private System.Windows.Forms.TextBox pass;
+ private System.Windows.Forms.TextBox username;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.TextBox deb;
+ private System.Windows.Forms.Button select;
+ private System.Windows.Forms.OpenFileDialog openFileDialog;
+ }
+}
+
diff --git a/Main.cs b/Main.cs
new file mode 100644
index 0000000..48e779c
--- /dev/null
+++ b/Main.cs
@@ -0,0 +1,76 @@
+using SevenZipExtractor;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Tweak_Installer
+{
+ public partial class Main : Form
+ {
+ public Main()
+ {
+ InitializeComponent();
+ }
+
+ private void select_Click(object sender, EventArgs e)
+ {
+ var f = openFileDialog.ShowDialog();
+ switch (f)
+ {
+ case DialogResult.OK:
+ {
+ deb.Text = openFileDialog.FileName;
+ break;
+ }
+ }
+ }
+
+ private void install_Click(object sender, EventArgs e)
+ {
+ Process.Start("tic.exe", "install \"" + deb.Text + "\"");
+ }
+
+ private void Uninstall_Click(object sender, EventArgs e)
+ {
+ Process.Start("tic.exe", "uninstall \"" + deb.Text + "\"");
+ }
+
+ private void Main_Load(object sender, EventArgs e)
+ {
+ string[] data = File.ReadAllLines("settings"); //get ssh settings
+ for (int i = 0; i != data.Length; i++)
+ {
+ data[i] = data[i].Split('#')[0];
+ }
+ host.Text = data[0];
+ username.Text = data[1];
+ pass.Text = data[2];
+ }
+
+ private void host_TextChanged(object sender, EventArgs e)
+ {
+ string[] data = { host.Text, username.Text, pass.Text };
+ File.WriteAllLines("settings", data);
+ }
+
+ private void username_TextChanged(object sender, EventArgs e)
+ {
+ string[] data = { host.Text, username.Text, pass.Text };
+ File.WriteAllLines("settings", data);
+ }
+
+ private void pass_TextChanged(object sender, EventArgs e)
+ {
+ string[] data = { host.Text, username.Text, pass.Text };
+ File.WriteAllLines("settings", data);
+ }
+ }
+}
diff --git a/Main.resx b/Main.resx
new file mode 100644
index 0000000..12048a9
--- /dev/null
+++ b/Main.resx
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 17, 17
+
+
\ No newline at end of file
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..0b1578c
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Tweak_Installer
+{
+ static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Main());
+ }
+ }
+}
diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..5401a35
--- /dev/null
+++ b/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Tweak Installer")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Tweak Installer")]
+[assembly: AssemblyCopyright("Copyright © 2018")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("60ea8a11-b29b-458c-a011-a21d487d4823")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..e9ec010
--- /dev/null
+++ b/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Tweak_Installer.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Tweak_Installer.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/Properties/Resources.resx b/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..3752162
--- /dev/null
+++ b/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Tweak_Installer.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/Properties/Settings.settings b/Properties/Settings.settings
new file mode 100644
index 0000000..3964565
--- /dev/null
+++ b/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Tweak Installer.csproj b/Tweak Installer.csproj
new file mode 100644
index 0000000..312d045
--- /dev/null
+++ b/Tweak Installer.csproj
@@ -0,0 +1,95 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {60EA8A11-B29B-458C-A011-A21D487D4823}
+ WinExe
+ Tweak_Installer
+ Tweak Installer
+ v4.6.1
+ 512
+ true
+
+
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ ..\packages\SevenZipExtractor.1.0.11\lib\net45\SevenZipExtractor.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Form
+
+
+ Main.cs
+
+
+
+
+ Main.cs
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+ Designer
+
+
+ True
+ Resources.resx
+
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ True
+ Settings.settings
+ True
+
+
+
+
+
+
+
+
+
+ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
+
+
+
+
\ No newline at end of file
diff --git a/bin/Debug/SevenZipExtractor.dll b/bin/Debug/SevenZipExtractor.dll
new file mode 100644
index 0000000..87a9a0f
Binary files /dev/null and b/bin/Debug/SevenZipExtractor.dll differ
diff --git a/bin/Debug/Tweak Installer.exe b/bin/Debug/Tweak Installer.exe
new file mode 100644
index 0000000..0e47ff9
Binary files /dev/null and b/bin/Debug/Tweak Installer.exe differ
diff --git a/bin/Debug/Tweak Installer.exe.config b/bin/Debug/Tweak Installer.exe.config
new file mode 100644
index 0000000..731f6de
--- /dev/null
+++ b/bin/Debug/Tweak Installer.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bin/Debug/Tweak Installer.pdb b/bin/Debug/Tweak Installer.pdb
new file mode 100644
index 0000000..90b7a5c
Binary files /dev/null and b/bin/Debug/Tweak Installer.pdb differ
diff --git a/bin/Debug/settings b/bin/Debug/settings
new file mode 100644
index 0000000..14ba46a
--- /dev/null
+++ b/bin/Debug/settings
@@ -0,0 +1,3 @@
+aaaaa
+a
+ffff
diff --git a/bin/Debug/x64/7z.dll b/bin/Debug/x64/7z.dll
new file mode 100644
index 0000000..a83bdca
Binary files /dev/null and b/bin/Debug/x64/7z.dll differ
diff --git a/bin/Debug/x86/7z.dll b/bin/Debug/x86/7z.dll
new file mode 100644
index 0000000..4bcfc18
Binary files /dev/null and b/bin/Debug/x86/7z.dll differ
diff --git a/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/obj/Debug/DesignTimeResolveAssemblyReferences.cache
new file mode 100644
index 0000000..cc3e393
Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..c047d61
Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/Tweak Installer.csproj.CopyComplete b/obj/Debug/Tweak Installer.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/Tweak Installer.csproj.CoreCompileInputs.cache b/obj/Debug/Tweak Installer.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..c0b151b
--- /dev/null
+++ b/obj/Debug/Tweak Installer.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+e8e793819770cf4aaebec2dd91dc9ef5fcd4eef0
diff --git a/obj/Debug/Tweak Installer.csproj.FileListAbsolute.txt b/obj/Debug/Tweak Installer.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..8350baa
--- /dev/null
+++ b/obj/Debug/Tweak Installer.csproj.FileListAbsolute.txt
@@ -0,0 +1,13 @@
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\bin\Debug\Tweak Installer.exe.config
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\bin\Debug\Tweak Installer.exe
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\bin\Debug\Tweak Installer.pdb
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\obj\Debug\Tweak Installer.csprojResolveAssemblyReference.cache
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\obj\Debug\Tweak_Installer.Main.resources
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\obj\Debug\Tweak_Installer.Properties.Resources.resources
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\obj\Debug\Tweak Installer.csproj.GenerateResource.Cache
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\obj\Debug\Tweak Installer.csproj.CoreCompileInputs.cache
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\obj\Debug\Tweak Installer.exe
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\obj\Debug\Tweak Installer.pdb
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\bin\Debug\x64\7z.dll
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\bin\Debug\x86\7z.dll
+C:\Users\josep\OneDrive\Documents\Visual Studio 2017\Projects\C\Tweak Installer\bin\Debug\SevenZipExtractor.dll
diff --git a/obj/Debug/Tweak Installer.csproj.GenerateResource.Cache b/obj/Debug/Tweak Installer.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..5aea3f8
Binary files /dev/null and b/obj/Debug/Tweak Installer.csproj.GenerateResource.Cache differ
diff --git a/obj/Debug/Tweak Installer.csprojResolveAssemblyReference.cache b/obj/Debug/Tweak Installer.csprojResolveAssemblyReference.cache
new file mode 100644
index 0000000..eed2ba4
Binary files /dev/null and b/obj/Debug/Tweak Installer.csprojResolveAssemblyReference.cache differ
diff --git a/obj/Debug/Tweak Installer.exe b/obj/Debug/Tweak Installer.exe
new file mode 100644
index 0000000..0e47ff9
Binary files /dev/null and b/obj/Debug/Tweak Installer.exe differ
diff --git a/obj/Debug/Tweak Installer.pdb b/obj/Debug/Tweak Installer.pdb
new file mode 100644
index 0000000..90b7a5c
Binary files /dev/null and b/obj/Debug/Tweak Installer.pdb differ
diff --git a/obj/Debug/Tweak_Installer.Main.resources b/obj/Debug/Tweak_Installer.Main.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/obj/Debug/Tweak_Installer.Main.resources differ
diff --git a/obj/Debug/Tweak_Installer.Properties.Resources.resources b/obj/Debug/Tweak_Installer.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/obj/Debug/Tweak_Installer.Properties.Resources.resources differ
diff --git a/packages.config b/packages.config
new file mode 100644
index 0000000..4989275
--- /dev/null
+++ b/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file