diff --git a/.vs/OnePass/v16/.suo b/.vs/OnePass/v16/.suo index a01719f..b264371 100644 Binary files a/.vs/OnePass/v16/.suo and b/.vs/OnePass/v16/.suo differ diff --git a/OnePass/App.config b/OnePass/App.config index 56efbc7..ecdcf8a 100644 --- a/OnePass/App.config +++ b/OnePass/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/OnePass/Form1.Designer.cs b/OnePass/Form1.Designer.cs index 21657e2..6ce0a9c 100644 --- a/OnePass/Form1.Designer.cs +++ b/OnePass/Form1.Designer.cs @@ -338,7 +338,7 @@ namespace OnePass this.MaximumSize = new System.Drawing.Size(442, 222); this.MinimumSize = new System.Drawing.Size(442, 222); this.Name = "Form1"; - this.Text = "OnePass V5.1"; + this.Text = "OnePass V5.2"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.passCycle)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.passLength)).EndInit(); diff --git a/OnePass/Form1.cs b/OnePass/Form1.cs index 0117a12..3cacb95 100644 --- a/OnePass/Form1.cs +++ b/OnePass/Form1.cs @@ -5,6 +5,7 @@ using System.Drawing; using System.IO; using System.Text; using System.Threading; +using System.Windows; using System.Windows.Forms; namespace OnePass @@ -59,19 +60,19 @@ namespace OnePass isvowel = !isvowel; } return pass; - } + }//using Microsoft.WindowsAPICodePack.Dialogs; private void label7_Click(object sender, EventArgs e) { - label7.BackColor = SystemColors.Highlight; - atoz.BackColor = SystemColors.InactiveCaption; - uAtoZ.BackColor = SystemColors.InactiveCaption; - numbers.BackColor = SystemColors.InactiveCaption; - special.BackColor = SystemColors.InactiveCaption; - extspc.BackColor = SystemColors.InactiveCaption; + label7.BackColor = System.Drawing.SystemColors.Highlight; + atoz.BackColor = System.Drawing.SystemColors.InactiveCaption; + uAtoZ.BackColor = System.Drawing.SystemColors.InactiveCaption; + numbers.BackColor = System.Drawing.SystemColors.InactiveCaption; + special.BackColor = System.Drawing.SystemColors.InactiveCaption; + extspc.BackColor = System.Drawing.SystemColors.InactiveCaption; } private void atoz_Click(object sender, EventArgs e) { - label7.BackColor = SystemColors.InactiveCaption; + label7.BackColor = System.Drawing.SystemColors.InactiveCaption; if (atoz.BackColor == System.Drawing.SystemColors.InactiveCaption) { atoz.BackColor = System.Drawing.SystemColors.Highlight; @@ -83,7 +84,7 @@ namespace OnePass private void uAtoZ_Click(object sender, EventArgs e) { - label7.BackColor = SystemColors.InactiveCaption; + label7.BackColor = System.Drawing.SystemColors.InactiveCaption; if (uAtoZ.BackColor == System.Drawing.SystemColors.InactiveCaption) { uAtoZ.BackColor = System.Drawing.SystemColors.Highlight; @@ -96,7 +97,7 @@ namespace OnePass private void numbers_Click(object sender, EventArgs e) { - label7.BackColor = SystemColors.InactiveCaption; + label7.BackColor = System.Drawing.SystemColors.InactiveCaption; if (numbers.BackColor == System.Drawing.SystemColors.InactiveCaption) { numbers.BackColor = System.Drawing.SystemColors.Highlight; @@ -109,7 +110,7 @@ namespace OnePass private void special_Click(object sender, EventArgs e) { - label7.BackColor = SystemColors.InactiveCaption; + label7.BackColor = System.Drawing.SystemColors.InactiveCaption; if (special.BackColor == System.Drawing.SystemColors.InactiveCaption) { special.BackColor = System.Drawing.SystemColors.Highlight; @@ -179,7 +180,7 @@ namespace OnePass { if (sitename.Text == "" || username.Text == "" || masterpass.Text == "") { - MessageBox.Show("Cannot leave a field blank!"); + System.Windows.MessageBox.Show("Cannot leave a field blank!"); return; } ArrayList chars = new ArrayList(); @@ -193,13 +194,13 @@ namespace OnePass addUpper(ref chars); if (extspc.BackColor == System.Drawing.SystemColors.Highlight) addExtended(ref chars); - if(label7.BackColor == SystemColors.Highlight) + if(label7.BackColor == System.Drawing.SystemColors.Highlight) { chars.Add('A'); } if (chars.Count == 0) { - MessageBox.Show("Must have at least one option turned on to generate a password!"); + System.Windows.MessageBox.Show("Must have at least one option turned on to generate a password!"); return; } byte[] sn_bytes = Encoding.ASCII.GetBytes(sitename.Text); @@ -224,20 +225,20 @@ namespace OnePass } try { - if (label7.BackColor == SystemColors.Highlight) - Clipboard.SetText(GeneratePassword((int)passLength.Value, (int)seed)); + if (label7.BackColor == System.Drawing.SystemColors.Highlight) + System.Windows.Clipboard.SetText(GeneratePassword((int)passLength.Value, (int)seed)); else - Clipboard.SetText(GenerateKey((uint)passLength.Value, seed, ref chars)); + System.Windows.Clipboard.SetText(GenerateKey((uint)passLength.Value, seed, ref chars)); } catch { - MessageBox.Show("Attempt to capture clipboard data over the network! (Are you using remote desktop w/clipboard)"); + System.Windows.MessageBox.Show("Attempt to capture clipboard data over the network! (Are you using remote desktop w/clipboard)"); } masterpass.Text = ""; } private void extspc_Click(object sender, EventArgs e) { - label7.BackColor = SystemColors.InactiveCaption; + label7.BackColor = System.Drawing.SystemColors.InactiveCaption; if (extspc.BackColor == System.Drawing.SystemColors.InactiveCaption) { extspc.BackColor = System.Drawing.SystemColors.Highlight; @@ -250,7 +251,7 @@ namespace OnePass private void help_Click(object sender, EventArgs e) { - MessageBox.Show("When a password is generated the password will live on your clipboard for 7 seconds (paste it quick). Then your master password and the clipboard is also cleared out! Make sure nothing important is on the clipboard!","Help!"); + System.Windows.MessageBox.Show("When a password is generated the password will live on your clipboard for 7 seconds (paste it quick). Then your master password and the clipboard is also cleared out! Make sure nothing important is on the clipboard!","Help!"); } private string MakeValidFileName(string name) { @@ -271,12 +272,12 @@ namespace OnePass username.Text = form2.login; passCycle.Value = (decimal)form2.cycle; passLength.Value = (decimal)form2.length; - special.BackColor = (form2.opt1) ? SystemColors.Highlight : SystemColors.InactiveCaption; - numbers.BackColor = (form2.opt2) ? SystemColors.Highlight : SystemColors.InactiveCaption; - atoz.BackColor = (form2.opt3) ? SystemColors.Highlight : SystemColors.InactiveCaption; - uAtoZ.BackColor = (form2.opt4) ? SystemColors.Highlight : SystemColors.InactiveCaption; - extspc.BackColor = (form2.opt5) ? SystemColors.Highlight : SystemColors.InactiveCaption; - label7.BackColor = (form2.opt6) ? SystemColors.Highlight : SystemColors.InactiveCaption; + special.BackColor = (form2.opt1) ? System.Drawing.SystemColors.Highlight : System.Drawing.SystemColors.InactiveCaption; + numbers.BackColor = (form2.opt2) ? System.Drawing.SystemColors.Highlight : System.Drawing.SystemColors.InactiveCaption; + atoz.BackColor = (form2.opt3) ? System.Drawing.SystemColors.Highlight : System.Drawing.SystemColors.InactiveCaption; + uAtoZ.BackColor = (form2.opt4) ? System.Drawing.SystemColors.Highlight : System.Drawing.SystemColors.InactiveCaption; + extspc.BackColor = (form2.opt5) ? System.Drawing.SystemColors.Highlight : System.Drawing.SystemColors.InactiveCaption; + label7.BackColor = (form2.opt6) ? System.Drawing.SystemColors.Highlight : System.Drawing.SystemColors.InactiveCaption; } } @@ -284,7 +285,7 @@ namespace OnePass { if(sitename.Text=="" || username.Text == "") { - MessageBox.Show("Cannot save data if fields are incomplete!"); + System.Windows.MessageBox.Show("Cannot save data if fields are incomplete!"); return; } try @@ -294,18 +295,18 @@ namespace OnePass writer.Write(username.Text); writer.Write((int)passCycle.Value); writer.Write((int)passLength.Value); - writer.Write(special.BackColor == SystemColors.Highlight); - writer.Write(numbers.BackColor == SystemColors.Highlight); - writer.Write(atoz.BackColor == SystemColors.Highlight); - writer.Write(uAtoZ.BackColor == SystemColors.Highlight); - writer.Write(extspc.BackColor == SystemColors.Highlight); - writer.Write(label7.BackColor == SystemColors.Highlight); + writer.Write(special.BackColor == System.Drawing.SystemColors.Highlight); + writer.Write(numbers.BackColor == System.Drawing.SystemColors.Highlight); + writer.Write(atoz.BackColor == System.Drawing.SystemColors.Highlight); + writer.Write(uAtoZ.BackColor == System.Drawing.SystemColors.Highlight); + writer.Write(extspc.BackColor == System.Drawing.SystemColors.Highlight); + writer.Write(label7.BackColor == System.Drawing.SystemColors.Highlight); writer.Flush(); writer.Dispose(); } catch(Exception ex) { - MessageBox.Show(ex.Message); + System.Windows.MessageBox.Show(ex.Message); } } diff --git a/OnePass/Form2.Designer.cs b/OnePass/Form2.Designer.cs index b8ff1a3..0277220 100644 --- a/OnePass/Form2.Designer.cs +++ b/OnePass/Form2.Designer.cs @@ -34,6 +34,8 @@ namespace OnePass this.textBox1 = new System.Windows.Forms.TextBox(); this.select_login = new System.Windows.Forms.Button(); this.remove_login = new System.Windows.Forms.Button(); + this.button1 = new System.Windows.Forms.Button(); + this.button2 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // Logins @@ -55,9 +57,9 @@ namespace OnePass // // select_login // - this.select_login.Location = new System.Drawing.Point(13, 153); + this.select_login.Location = new System.Drawing.Point(13, 152); this.select_login.Name = "select_login"; - this.select_login.Size = new System.Drawing.Size(132, 23); + this.select_login.Size = new System.Drawing.Size(84, 23); this.select_login.TabIndex = 2; this.select_login.Text = "Select Login Info"; this.select_login.UseVisualStyleBackColor = true; @@ -65,28 +67,51 @@ namespace OnePass // // remove_login // - this.remove_login.Location = new System.Drawing.Point(177, 153); + this.remove_login.Location = new System.Drawing.Point(13, 179); this.remove_login.Name = "remove_login"; - this.remove_login.Size = new System.Drawing.Size(132, 23); + this.remove_login.Size = new System.Drawing.Size(84, 23); this.remove_login.TabIndex = 3; this.remove_login.Text = "Delete Login Info"; this.remove_login.UseVisualStyleBackColor = true; this.remove_login.Click += new System.EventHandler(this.remove_login_Click); // + // button1 + // + this.button1.Location = new System.Drawing.Point(222, 152); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(87, 23); + this.button1.TabIndex = 4; + this.button1.Text = "Export Logins"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // button2 + // + this.button2.Location = new System.Drawing.Point(222, 179); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(87, 23); + this.button2.TabIndex = 5; + this.button2.Text = "Import Logins"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); + // // Form2 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(321, 182); + this.ClientSize = new System.Drawing.Size(321, 207); + this.Controls.Add(this.button2); + this.Controls.Add(this.button1); this.Controls.Add(this.remove_login); this.Controls.Add(this.select_login); this.Controls.Add(this.textBox1); this.Controls.Add(this.Logins); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximumSize = new System.Drawing.Size(337, 221); - this.MinimumSize = new System.Drawing.Size(337, 221); + this.MaximumSize = new System.Drawing.Size(337, 246); + this.MinimumSize = new System.Drawing.Size(337, 246); this.Name = "Form2"; - this.Text = "Saved Logins"; + this.Text = "Logins"; + this.Load += new System.EventHandler(this.Form2_Load); this.ResumeLayout(false); this.PerformLayout(); @@ -98,5 +123,7 @@ namespace OnePass private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Button select_login; private System.Windows.Forms.Button remove_login; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Button button2; } } \ No newline at end of file diff --git a/OnePass/Form2.cs b/OnePass/Form2.cs index 3a7a39a..c5fa037 100644 --- a/OnePass/Form2.cs +++ b/OnePass/Form2.cs @@ -1,18 +1,14 @@ using System; using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Windows.Forms; +using System.IO.Compression; +using System.Globalization; namespace OnePass { public partial class Form2 : Form - {// + { public string site { get; set; } public string login { get; set; } public bool opt6 { get; set; } @@ -25,6 +21,7 @@ namespace OnePass public int cycle { get; set; } public bool state { get; set; } public string path { get; } + public string desktop = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop)); List files = new List(); public Form2() { @@ -93,5 +90,43 @@ namespace OnePass init(); } } + //Export + private void button1_Click(object sender, EventArgs e) + { + string filename = "logins_" + DateTime.Now.ToString("MM-dd-yy (hhmmss)") + ".onp"; + try + { + ZipFile.CreateFromDirectory(path, Path.Combine(desktop, filename)); + MessageBox.Show("Export has been saved to: " + Path.Combine(desktop, filename)); + } catch + { + MessageBox.Show("An export already exists! " + Path.Combine(desktop, filename)); + } + } + //Import + private void button2_Click(object sender, EventArgs e) + { + OpenFileDialog openDialog = new OpenFileDialog(); + openDialog.Title = "Select A File"; + openDialog.Filter = "Onepass Files (*.onp)|*.onp" + "|" + + "All Files (*.*)|*.*"; + try + { + if (openDialog.ShowDialog() == DialogResult.OK) + { + ZipFile.ExtractToDirectory(openDialog.FileName, path); + init(); + } + } + catch + { + MessageBox.Show("Invalid file selected!"); + } + } + + private void Form2_Load(object sender, EventArgs e) + { + // + } } } diff --git a/OnePass/OnePass.csproj b/OnePass/OnePass.csproj index 79f2447..72893d7 100644 --- a/OnePass/OnePass.csproj +++ b/OnePass/OnePass.csproj @@ -12,6 +12,7 @@ 512 true true + AnyCPU @@ -36,8 +37,20 @@ lock-clipart-cliparti1_lock-clip-art_02.ico + + ..\packages\Microsoft.WindowsAPICodePack-Core.1.1.0.0\lib\Microsoft.WindowsAPICodePack.dll + + + ..\packages\Microsoft.WindowsAPICodePack-Shell.1.1.0.0\lib\Microsoft.WindowsAPICodePack.Shell.dll + + + ..\packages\Microsoft.WindowsAPICodePack-Shell.1.1.0.0\lib\Microsoft.WindowsAPICodePack.ShellExtensions.dll + + + + @@ -47,6 +60,7 @@ + @@ -77,7 +91,9 @@ True Resources.resx + True + SettingsSingleFileGenerator Settings.Designer.cs diff --git a/OnePass/Properties/Resources.Designer.cs b/OnePass/Properties/Resources.Designer.cs index 040a2b6..ca78cce 100644 --- a/OnePass/Properties/Resources.Designer.cs +++ b/OnePass/Properties/Resources.Designer.cs @@ -8,9 +8,10 @@ // //------------------------------------------------------------------------------ - -namespace OnePass.Properties -{ +namespace OnePass.Properties { + using System; + + /// /// A strongly-typed resource class, for looking up localized strings, etc. /// @@ -18,51 +19,43 @@ namespace OnePass.Properties // 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.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources - { - + 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() - { + 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)) - { + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("OnePass.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 - { + internal static global::System.Globalization.CultureInfo Culture { + get { return resourceCulture; } - set - { + set { resourceCulture = value; } } diff --git a/OnePass/Properties/Settings.Designer.cs b/OnePass/Properties/Settings.Designer.cs index 8143c79..f76ad3a 100644 --- a/OnePass/Properties/Settings.Designer.cs +++ b/OnePass/Properties/Settings.Designer.cs @@ -8,20 +8,17 @@ // //------------------------------------------------------------------------------ - -namespace OnePass.Properties -{ +namespace OnePass.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 - { - + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.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 - { + + public static Settings Default { + get { return defaultInstance; } } diff --git a/OnePass/bin/Debug/OnePass.exe b/OnePass/bin/Debug/OnePass.exe index cb58f87..66636d8 100644 Binary files a/OnePass/bin/Debug/OnePass.exe and b/OnePass/bin/Debug/OnePass.exe differ diff --git a/OnePass/bin/Debug/OnePass.exe.config b/OnePass/bin/Debug/OnePass.exe.config index 56efbc7..ecdcf8a 100644 --- a/OnePass/bin/Debug/OnePass.exe.config +++ b/OnePass/bin/Debug/OnePass.exe.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/OnePass/bin/Debug/OnePass.pdb b/OnePass/bin/Debug/OnePass.pdb index 9d202c9..f035902 100644 Binary files a/OnePass/bin/Debug/OnePass.pdb and b/OnePass/bin/Debug/OnePass.pdb differ diff --git a/OnePass/bin/Release/OnePass.exe.config b/OnePass/bin/Release/OnePass.exe.config index 56efbc7..ecdcf8a 100644 --- a/OnePass/bin/Release/OnePass.exe.config +++ b/OnePass/bin/Release/OnePass.exe.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/OnePass/bin/Release/OnePass.pdb b/OnePass/bin/Release/OnePass.pdb index ac843b3..e1553ef 100644 Binary files a/OnePass/bin/Release/OnePass.pdb and b/OnePass/bin/Release/OnePass.pdb differ diff --git a/OnePass/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/OnePass/obj/Debug/DesignTimeResolveAssemblyReferences.cache index 5d49a61..9e1429b 100644 Binary files a/OnePass/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/OnePass/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/OnePass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/OnePass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 29a36d5..04d4fcd 100644 Binary files a/OnePass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/OnePass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/OnePass/obj/Debug/OnePass.Form1.resources b/OnePass/obj/Debug/OnePass.Form1.resources index 6c05a97..85992fe 100644 Binary files a/OnePass/obj/Debug/OnePass.Form1.resources and b/OnePass/obj/Debug/OnePass.Form1.resources differ diff --git a/OnePass/obj/Debug/OnePass.csproj.CoreCompileInputs.cache b/OnePass/obj/Debug/OnePass.csproj.CoreCompileInputs.cache index 4a5524a..2f9c9e1 100644 --- a/OnePass/obj/Debug/OnePass.csproj.CoreCompileInputs.cache +++ b/OnePass/obj/Debug/OnePass.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -8069502011d0681850e57a53d5a1673222f430a6 +00e520602f451cc44711f2d82caabf1b2656ae6e diff --git a/OnePass/obj/Debug/OnePass.csproj.FileListAbsolute.txt b/OnePass/obj/Debug/OnePass.csproj.FileListAbsolute.txt index 727fd48..718e728 100644 --- a/OnePass/obj/Debug/OnePass.csproj.FileListAbsolute.txt +++ b/OnePass/obj/Debug/OnePass.csproj.FileListAbsolute.txt @@ -8,3 +8,25 @@ C:\Users\rayam\source\repos\OnePass\OnePass\obj\Debug\OnePass.csproj.GenerateRes C:\Users\rayam\source\repos\OnePass\OnePass\obj\Debug\OnePass.csproj.CoreCompileInputs.cache C:\Users\rayam\source\repos\OnePass\OnePass\obj\Debug\OnePass.exe C:\Users\rayam\source\repos\OnePass\OnePass\obj\Debug\OnePass.pdb +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\OnePass.exe.config +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\OnePass.exe +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\OnePass.pdb +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.csproj.AssemblyReference.cache +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.Form1.resources +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.Form2.resources +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.Properties.Resources.resources +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.csproj.GenerateResource.cache +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.csproj.CoreCompileInputs.cache +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.exe +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.pdb +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.dll +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.Shell.dll +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.ShellExtensions.dll +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.pdb +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.xml +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.Shell.pdb +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.Shell.xml +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.ShellExtensions.pdb +G:\VSCWorkspace\OnePass\OnePass\bin\Debug\Microsoft.WindowsAPICodePack.ShellExtensions.xml +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.csproj.CopyComplete +G:\VSCWorkspace\OnePass\OnePass\obj\Debug\OnePass.csproj.SuggestedBindingRedirects.cache diff --git a/OnePass/obj/Debug/OnePass.csproj.GenerateResource.cache b/OnePass/obj/Debug/OnePass.csproj.GenerateResource.cache index 4741002..c04c710 100644 Binary files a/OnePass/obj/Debug/OnePass.csproj.GenerateResource.cache and b/OnePass/obj/Debug/OnePass.csproj.GenerateResource.cache differ diff --git a/OnePass/obj/Debug/OnePass.exe b/OnePass/obj/Debug/OnePass.exe index cb58f87..66636d8 100644 Binary files a/OnePass/obj/Debug/OnePass.exe and b/OnePass/obj/Debug/OnePass.exe differ diff --git a/OnePass/obj/Debug/OnePass.pdb b/OnePass/obj/Debug/OnePass.pdb index 9d202c9..f035902 100644 Binary files a/OnePass/obj/Debug/OnePass.pdb and b/OnePass/obj/Debug/OnePass.pdb differ diff --git a/OnePass/obj/Release/OnePass.csproj.CoreCompileInputs.cache b/OnePass/obj/Release/OnePass.csproj.CoreCompileInputs.cache index 4723ffe..0a5b8e8 100644 --- a/OnePass/obj/Release/OnePass.csproj.CoreCompileInputs.cache +++ b/OnePass/obj/Release/OnePass.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -ad2f261187cc44d5c3db8df71145224de824e6a7 +0215b1aacf7fd0af47be430b3d81a85de2f53264 diff --git a/OnePass/obj/Release/OnePass.csproj.FileListAbsolute.txt b/OnePass/obj/Release/OnePass.csproj.FileListAbsolute.txt index 923cf65..ccbd0b7 100644 --- a/OnePass/obj/Release/OnePass.csproj.FileListAbsolute.txt +++ b/OnePass/obj/Release/OnePass.csproj.FileListAbsolute.txt @@ -29,3 +29,14 @@ G:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.csproj.CoreCompileInputs.cac G:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.exe G:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.pdb G:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.csproj.AssemblyReference.cache +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.dll +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.Shell.dll +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.ShellExtensions.dll +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.pdb +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.xml +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.Shell.pdb +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.Shell.xml +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.ShellExtensions.pdb +G:\VSCWorkspace\OnePass\OnePass\bin\Release\Microsoft.WindowsAPICodePack.ShellExtensions.xml +G:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.csproj.SuggestedBindingRedirects.cache +G:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.csproj.CopyComplete diff --git a/OnePass/obj/Release/OnePass.csproj.GenerateResource.cache b/OnePass/obj/Release/OnePass.csproj.GenerateResource.cache index 90683b5..c04c710 100644 Binary files a/OnePass/obj/Release/OnePass.csproj.GenerateResource.cache and b/OnePass/obj/Release/OnePass.csproj.GenerateResource.cache differ diff --git a/OnePass/obj/Release/OnePass.exe b/OnePass/obj/Release/OnePass.exe index 5551c1a..9cdfed2 100644 Binary files a/OnePass/obj/Release/OnePass.exe and b/OnePass/obj/Release/OnePass.exe differ diff --git a/OnePass/obj/Release/OnePass.pdb b/OnePass/obj/Release/OnePass.pdb index ac843b3..e1553ef 100644 Binary files a/OnePass/obj/Release/OnePass.pdb and b/OnePass/obj/Release/OnePass.pdb differ