From 4a08827090821accfac7bb6bec190f65ce8166cf Mon Sep 17 00:00:00 2001 From: Greg Edwards Date: Thu, 25 Sep 2014 18:38:15 -0400 Subject: [PATCH] Removed blank VeekunImport project --- VeekunImport/Form1.Designer.cs | 126 ------------------ VeekunImport/Form1.cs | 27 ---- VeekunImport/Form1.resx | 123 ----------------- VeekunImport/Program.cs | 22 --- VeekunImport/Properties/AssemblyInfo.cs | 36 ----- VeekunImport/Properties/Resources.Designer.cs | 63 --------- VeekunImport/Properties/Resources.resx | 117 ---------------- VeekunImport/Properties/Settings.Designer.cs | 26 ---- VeekunImport/Properties/Settings.settings | 7 - VeekunImport/VeekunImport.csproj | 89 ------------- pkmnFoundations.sln | 12 -- 11 files changed, 648 deletions(-) delete mode 100644 VeekunImport/Form1.Designer.cs delete mode 100644 VeekunImport/Form1.cs delete mode 100644 VeekunImport/Form1.resx delete mode 100644 VeekunImport/Program.cs delete mode 100644 VeekunImport/Properties/AssemblyInfo.cs delete mode 100644 VeekunImport/Properties/Resources.Designer.cs delete mode 100644 VeekunImport/Properties/Resources.resx delete mode 100644 VeekunImport/Properties/Settings.Designer.cs delete mode 100644 VeekunImport/Properties/Settings.settings delete mode 100644 VeekunImport/VeekunImport.csproj diff --git a/VeekunImport/Form1.Designer.cs b/VeekunImport/Form1.Designer.cs deleted file mode 100644 index 9ece7a40..00000000 --- a/VeekunImport/Form1.Designer.cs +++ /dev/null @@ -1,126 +0,0 @@ -namespace PkmnFoundations.VeekunImport -{ - partial class Form1 - { - /// - /// 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.label1 = new System.Windows.Forms.Label(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.button1 = new System.Windows.Forms.Button(); - this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); - this.label2 = new System.Windows.Forms.Label(); - this.textBox2 = new System.Windows.Forms.TextBox(); - this.button2 = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 31); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(185, 13); - this.label1.TabIndex = 0; - this.label1.Text = "Location of Veekun database SQLite:"; - // - // textBox1 - // - this.textBox1.Location = new System.Drawing.Point(12, 47); - this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(212, 20); - this.textBox1.TabIndex = 1; - // - // button1 - // - this.button1.Location = new System.Drawing.Point(230, 44); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(75, 23); - this.button1.TabIndex = 2; - this.button1.Text = "Browse..."; - this.button1.UseVisualStyleBackColor = true; - this.button1.Click += new System.EventHandler(this.button1_Click); - // - // openFileDialog1 - // - this.openFileDialog1.FileName = "openFileDialog1"; - this.openFileDialog1.Filter = "SQLite database|*.sqlite"; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(12, 94); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(129, 13); - this.label2.TabIndex = 3; - this.label2.Text = "MySQL connection string:"; - // - // textBox2 - // - this.textBox2.Location = new System.Drawing.Point(12, 110); - this.textBox2.Name = "textBox2"; - this.textBox2.Size = new System.Drawing.Size(212, 20); - this.textBox2.TabIndex = 4; - // - // button2 - // - this.button2.Location = new System.Drawing.Point(187, 161); - this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(121, 30); - this.button2.TabIndex = 5; - this.button2.Text = "Import!"; - this.button2.UseVisualStyleBackColor = true; - // - // Form1 - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(320, 203); - this.Controls.Add(this.button2); - this.Controls.Add(this.textBox2); - this.Controls.Add(this.label2); - this.Controls.Add(this.button1); - this.Controls.Add(this.textBox1); - this.Controls.Add(this.label1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; - this.Name = "Form1"; - this.Text = "Form1"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label label1; - private System.Windows.Forms.TextBox textBox1; - private System.Windows.Forms.Button button1; - private System.Windows.Forms.OpenFileDialog openFileDialog1; - private System.Windows.Forms.Label label2; - private System.Windows.Forms.TextBox textBox2; - private System.Windows.Forms.Button button2; - } -} - diff --git a/VeekunImport/Form1.cs b/VeekunImport/Form1.cs deleted file mode 100644 index 15981cb7..00000000 --- a/VeekunImport/Form1.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Windows.Forms; - -namespace PkmnFoundations.VeekunImport -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - - private void button1_Click(object sender, EventArgs e) - { - if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK) - { - textBox1.Text = openFileDialog1.FileName; - } - } - } -} diff --git a/VeekunImport/Form1.resx b/VeekunImport/Form1.resx deleted file mode 100644 index 3a7d6715..00000000 --- a/VeekunImport/Form1.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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/VeekunImport/Program.cs b/VeekunImport/Program.cs deleted file mode 100644 index 313d301b..00000000 --- a/VeekunImport/Program.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Windows.Forms; -using System.Diagnostics; - -namespace PkmnFoundations.VeekunImport -{ - static class Program - { - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main() - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); - } - } -} diff --git a/VeekunImport/Properties/AssemblyInfo.cs b/VeekunImport/Properties/AssemblyInfo.cs deleted file mode 100644 index 948d901b..00000000 --- a/VeekunImport/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -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("VeekunImport")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Microsoft")] -[assembly: AssemblyProduct("VeekunImport")] -[assembly: AssemblyCopyright("Copyright © Microsoft 2011")] -[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("7aced570-f6b5-4f06-852e-d64a77b2d857")] - -// 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/VeekunImport/Properties/Resources.Designer.cs b/VeekunImport/Properties/Resources.Designer.cs deleted file mode 100644 index 48892dcc..00000000 --- a/VeekunImport/Properties/Resources.Designer.cs +++ /dev/null @@ -1,63 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.34014 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace PkmnFoundations.VeekunImport.Properties { - using System; - - - /// - /// 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 (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PkmnFoundations.VeekunImport.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/VeekunImport/Properties/Resources.resx b/VeekunImport/Properties/Resources.resx deleted file mode 100644 index ffecec85..00000000 --- a/VeekunImport/Properties/Resources.resx +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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/VeekunImport/Properties/Settings.Designer.cs b/VeekunImport/Properties/Settings.Designer.cs deleted file mode 100644 index d5dbb65c..00000000 --- a/VeekunImport/Properties/Settings.Designer.cs +++ /dev/null @@ -1,26 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.34014 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace PkmnFoundations.VeekunImport.Properties { - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.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/VeekunImport/Properties/Settings.settings b/VeekunImport/Properties/Settings.settings deleted file mode 100644 index abf36c5d..00000000 --- a/VeekunImport/Properties/Settings.settings +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/VeekunImport/VeekunImport.csproj b/VeekunImport/VeekunImport.csproj deleted file mode 100644 index 3c091e76..00000000 --- a/VeekunImport/VeekunImport.csproj +++ /dev/null @@ -1,89 +0,0 @@ - - - - Debug - x86 - 8.0.30703 - 2.0 - {024BA6DC-E146-405E-B028-2B50B7DD4581} - WinExe - Properties - PkmnFoundations.VeekunImport - VeekunImport - v4.0 - Client - 512 - - - x86 - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - x86 - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - Form - - - Form1.cs - - - - - Form1.cs - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - True - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - - - - - \ No newline at end of file diff --git a/pkmnFoundations.sln b/pkmnFoundations.sln index a56f6a24..8a114ea3 100644 --- a/pkmnFoundations.sln +++ b/pkmnFoundations.sln @@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Library", "library\Library. EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pokedex", "pokedex\Pokedex.csproj", "{483C628E-5A5A-4BD6-97CB-9A9FB1F82CF2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VeekunImport", "VeekunImport\VeekunImport.csproj", "{024BA6DC-E146-405E-B028-2B50B7DD4581}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "gts", "gts\gts.csproj", "{2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "bvCrawler4", "bvCrawler4\bvCrawler4.csproj", "{04E4EB3B-166B-4D8B-86AA-2178F2A927D5}" @@ -57,16 +55,6 @@ Global {483C628E-5A5A-4BD6-97CB-9A9FB1F82CF2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {483C628E-5A5A-4BD6-97CB-9A9FB1F82CF2}.Release|Mixed Platforms.Build.0 = Release|Any CPU {483C628E-5A5A-4BD6-97CB-9A9FB1F82CF2}.Release|x86.ActiveCfg = Release|Any CPU - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Debug|Any CPU.ActiveCfg = Debug|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Debug|Mixed Platforms.Build.0 = Debug|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Debug|x86.ActiveCfg = Debug|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Debug|x86.Build.0 = Debug|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Release|Any CPU.ActiveCfg = Release|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Release|Mixed Platforms.ActiveCfg = Release|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Release|Mixed Platforms.Build.0 = Release|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Release|x86.ActiveCfg = Release|x86 - {024BA6DC-E146-405E-B028-2B50B7DD4581}.Release|x86.Build.0 = Release|x86 {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Debug|Any CPU.Build.0 = Debug|Any CPU {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU