diff --git a/WoWCoordsToSQLScript/.vs/WoWCoordsToSQLScript/FileContentIndex/3e960541-4272-43f2-9d4c-c63127937613.vsidx b/WoWCoordsToSQLScript/.vs/WoWCoordsToSQLScript/FileContentIndex/3e960541-4272-43f2-9d4c-c63127937613.vsidx
new file mode 100644
index 0000000..08f56db
Binary files /dev/null and b/WoWCoordsToSQLScript/.vs/WoWCoordsToSQLScript/FileContentIndex/3e960541-4272-43f2-9d4c-c63127937613.vsidx differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/WoWCoordsToSQLScript/.vs/WoWCoordsToSQLScript/FileContentIndex/read.lock
similarity index 100%
rename from WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
rename to WoWCoordsToSQLScript/.vs/WoWCoordsToSQLScript/FileContentIndex/read.lock
diff --git a/WoWCoordsToSQLScript/.vs/WoWCoordsToSQLScript/v17/.suo b/WoWCoordsToSQLScript/.vs/WoWCoordsToSQLScript/v17/.suo
new file mode 100644
index 0000000..71e2dc5
Binary files /dev/null and b/WoWCoordsToSQLScript/.vs/WoWCoordsToSQLScript/v17/.suo differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/MainWindow.xaml.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/MainWindow.xaml.cs
index 67420f8..2c88c99 100644
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/MainWindow.xaml.cs
+++ b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/MainWindow.xaml.cs
@@ -141,36 +141,39 @@ private void btnGrabData_Click(object sender, RoutedEventArgs e)
endIndex = text.IndexOf("XEnd");
// grab the data (X ordinate)
numberOfChars = endIndex - startIndex - 1;
- xOrdinate = text.Substring(startIndex, numberOfChars);
- xOrdinate.Replace(" ", string.Empty);
- // lbContinentCoordinates.Items.Add(logLine);
-
- // Y ordinate
- startIndex = text.IndexOf("YStart") + 6;
- endIndex = text.IndexOf("YEnd");
- // grab the data (Y ordinate)
- numberOfChars = endIndex - startIndex - 1;
- yOrdinate = text.Substring(startIndex, numberOfChars);
- yOrdinate.Replace(" ", string.Empty);
-
- // Z ordinate
- startIndex = text.IndexOf("ZStart") + 6;
- endIndex = text.IndexOf("ZEnd");
- // grab the data (Z ordinate)
- numberOfChars = endIndex - startIndex - 1;
- zOrdinate = text.Substring(startIndex, numberOfChars);
- zOrdinate.Replace(" ", "");
-
- // Orientation - remove for now, as too many of these made the animation look very jerky
- /*
- startIndex = text.IndexOf("OStart") + 6;
- endIndex = text.IndexOf("OEnd");
- // grab the data (orientation)
- numberOfChars = endIndex - startIndex - 1;
- orientation = text.Substring(startIndex, numberOfChars);
- */
-
- lbContinentCoordinates.Items.Add(xOrdinate + delimiter + yOrdinate + delimiter + zOrdinate);
+ if (numberOfChars>0)
+ {
+ xOrdinate = text.Substring(startIndex, numberOfChars);
+ xOrdinate.Replace(" ", string.Empty);
+ // lbContinentCoordinates.Items.Add(logLine);
+
+ // Y ordinate
+ startIndex = text.IndexOf("YStart") + 6;
+ endIndex = text.IndexOf("YEnd");
+ // grab the data (Y ordinate)
+ numberOfChars = endIndex - startIndex - 1;
+ yOrdinate = text.Substring(startIndex, numberOfChars);
+ yOrdinate.Replace(" ", string.Empty);
+
+ // Z ordinate
+ startIndex = text.IndexOf("ZStart") + 6;
+ endIndex = text.IndexOf("ZEnd");
+ // grab the data (Z ordinate)
+ numberOfChars = endIndex - startIndex - 1;
+ zOrdinate = text.Substring(startIndex, numberOfChars);
+ zOrdinate.Replace(" ", "");
+
+ // Orientation - remove for now, as too many of these made the animation look very jerky
+ /*
+ startIndex = text.IndexOf("OStart") + 6;
+ endIndex = text.IndexOf("OEnd");
+ // grab the data (orientation)
+ numberOfChars = endIndex - startIndex - 1;
+ orientation = text.Substring(startIndex, numberOfChars);
+ */
+
+ lbContinentCoordinates.Items.Add(xOrdinate + delimiter + yOrdinate + delimiter + zOrdinate);
+ }
}
txtMessagePanel.Text = "Job done :-)";
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/App.g.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/App.g.cs
deleted file mode 100644
index 49895c4..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/App.g.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-#pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1DEF14B0303CFA2735580CBCE64F98E7"
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18444
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace WoWCoordsToSQLScript {
-
-
- ///
- /// App
- ///
- public partial class App : System.Windows.Application {
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public void InitializeComponent() {
-
- #line 4 "..\..\App.xaml"
- this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
-
- #line default
- #line hidden
- }
-
- ///
- /// Application Entry Point.
- ///
- [System.STAThreadAttribute()]
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public static void Main() {
- WoWCoordsToSQLScript.App app = new WoWCoordsToSQLScript.App();
- app.InitializeComponent();
- app.Run();
- }
- }
-}
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/App.g.i.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/App.g.i.cs
deleted file mode 100644
index 49895c4..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/App.g.i.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-#pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1DEF14B0303CFA2735580CBCE64F98E7"
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18444
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace WoWCoordsToSQLScript {
-
-
- ///
- /// App
- ///
- public partial class App : System.Windows.Application {
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public void InitializeComponent() {
-
- #line 4 "..\..\App.xaml"
- this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
-
- #line default
- #line hidden
- }
-
- ///
- /// Application Entry Point.
- ///
- [System.STAThreadAttribute()]
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public static void Main() {
- WoWCoordsToSQLScript.App app = new WoWCoordsToSQLScript.App();
- app.InitializeComponent();
- app.Run();
- }
- }
-}
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
deleted file mode 100644
index 6662090..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.baml b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.baml
deleted file mode 100644
index 56d6f7c..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.baml and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.g.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.g.cs
deleted file mode 100644
index bf3cb7a..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.g.cs
+++ /dev/null
@@ -1,323 +0,0 @@
-#pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "4AF315607037323143B448BDEA8DE6EB"
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18444
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace WoWCoordsToSQLScript {
-
-
- ///
- /// MainWindow
- ///
- public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
-
-
- #line 5 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnGrabData;
-
- #line default
- #line hidden
-
-
- #line 16 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnConvertToSql;
-
- #line default
- #line hidden
-
-
- #line 17 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.ListBox lbContinentCoordinates;
-
- #line default
- #line hidden
-
-
- #line 19 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnSaveToFile;
-
- #line default
- #line hidden
-
-
- #line 20 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtCsvFileName;
-
- #line default
- #line hidden
-
-
- #line 21 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtSQLScriptFileName;
-
- #line default
- #line hidden
-
-
- #line 22 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtDelimiterForSavedCSVFile;
-
- #line default
- #line hidden
-
-
- #line 24 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtGMCharactersName;
-
- #line default
- #line hidden
-
-
- #line 27 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtId;
-
- #line default
- #line hidden
-
-
- #line 29 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtPoint;
-
- #line default
- #line hidden
-
-
- #line 31 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnSaveDefaultSettings;
-
- #line default
- #line hidden
-
-
- #line 41 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtMessagePanel;
-
- #line default
- #line hidden
-
-
- #line 42 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnLoadCSVFile;
-
- #line default
- #line hidden
-
-
- #line 43 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtCSVFileNameToLoad;
-
- #line default
- #line hidden
-
-
- #line 44 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtDelimiterForLoadedCSVFile;
-
- #line default
- #line hidden
-
-
- #line 48 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnHelpMe;
-
- #line default
- #line hidden
-
-
- #line 49 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.RichTextBox rtbHelpInformation;
-
- #line default
- #line hidden
-
-
- #line 103 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnWTF;
-
- #line default
- #line hidden
-
- private bool _contentLoaded;
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public void InitializeComponent() {
- if (_contentLoaded) {
- return;
- }
- _contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/WoWCoordsToSQLScript;component/mainwindow.xaml", System.UriKind.Relative);
-
- #line 1 "..\..\MainWindow.xaml"
- System.Windows.Application.LoadComponent(this, resourceLocater);
-
- #line default
- #line hidden
- }
-
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
- void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
- switch (connectionId)
- {
- case 1:
- this.btnGrabData = ((System.Windows.Controls.Button)(target));
-
- #line 5 "..\..\MainWindow.xaml"
- this.btnGrabData.Click += new System.Windows.RoutedEventHandler(this.btnGrabData_Click);
-
- #line default
- #line hidden
- return;
- case 2:
- this.btnConvertToSql = ((System.Windows.Controls.Button)(target));
-
- #line 16 "..\..\MainWindow.xaml"
- this.btnConvertToSql.Click += new System.Windows.RoutedEventHandler(this.btnConvertToSql_Click);
-
- #line default
- #line hidden
- return;
- case 3:
- this.lbContinentCoordinates = ((System.Windows.Controls.ListBox)(target));
- return;
- case 4:
- this.btnSaveToFile = ((System.Windows.Controls.Button)(target));
-
- #line 19 "..\..\MainWindow.xaml"
- this.btnSaveToFile.Click += new System.Windows.RoutedEventHandler(this.btnSaveToFile_Click);
-
- #line default
- #line hidden
- return;
- case 5:
- this.txtCsvFileName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 6:
- this.txtSQLScriptFileName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 7:
- this.txtDelimiterForSavedCSVFile = ((System.Windows.Controls.TextBox)(target));
- return;
- case 8:
- this.txtGMCharactersName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 9:
- this.txtId = ((System.Windows.Controls.TextBox)(target));
- return;
- case 10:
- this.txtPoint = ((System.Windows.Controls.TextBox)(target));
-
- #line 29 "..\..\MainWindow.xaml"
- this.txtPoint.LostFocus += new System.Windows.RoutedEventHandler(this.txtPoint_LostFocus);
-
- #line default
- #line hidden
- return;
- case 11:
- this.btnSaveDefaultSettings = ((System.Windows.Controls.Button)(target));
-
- #line 31 "..\..\MainWindow.xaml"
- this.btnSaveDefaultSettings.Click += new System.Windows.RoutedEventHandler(this.btnSaveDefaultSettings_Click);
-
- #line default
- #line hidden
- return;
- case 12:
- this.txtMessagePanel = ((System.Windows.Controls.TextBox)(target));
- return;
- case 13:
- this.btnLoadCSVFile = ((System.Windows.Controls.Button)(target));
-
- #line 42 "..\..\MainWindow.xaml"
- this.btnLoadCSVFile.Click += new System.Windows.RoutedEventHandler(this.btnLoadCSVFile_Click);
-
- #line default
- #line hidden
- return;
- case 14:
- this.txtCSVFileNameToLoad = ((System.Windows.Controls.TextBox)(target));
- return;
- case 15:
- this.txtDelimiterForLoadedCSVFile = ((System.Windows.Controls.TextBox)(target));
- return;
- case 16:
- this.btnHelpMe = ((System.Windows.Controls.Button)(target));
-
- #line 48 "..\..\MainWindow.xaml"
- this.btnHelpMe.Click += new System.Windows.RoutedEventHandler(this.btnHelpMe_Click);
-
- #line default
- #line hidden
- return;
- case 17:
- this.rtbHelpInformation = ((System.Windows.Controls.RichTextBox)(target));
- return;
- case 18:
- this.btnWTF = ((System.Windows.Controls.Button)(target));
-
- #line 103 "..\..\MainWindow.xaml"
- this.btnWTF.Click += new System.Windows.RoutedEventHandler(this.btnWTF_Click);
-
- #line default
- #line hidden
- return;
- }
- this._contentLoaded = true;
- }
- }
-}
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.g.i.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.g.i.cs
deleted file mode 100644
index bf3cb7a..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/MainWindow.g.i.cs
+++ /dev/null
@@ -1,323 +0,0 @@
-#pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "4AF315607037323143B448BDEA8DE6EB"
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18444
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace WoWCoordsToSQLScript {
-
-
- ///
- /// MainWindow
- ///
- public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
-
-
- #line 5 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnGrabData;
-
- #line default
- #line hidden
-
-
- #line 16 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnConvertToSql;
-
- #line default
- #line hidden
-
-
- #line 17 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.ListBox lbContinentCoordinates;
-
- #line default
- #line hidden
-
-
- #line 19 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnSaveToFile;
-
- #line default
- #line hidden
-
-
- #line 20 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtCsvFileName;
-
- #line default
- #line hidden
-
-
- #line 21 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtSQLScriptFileName;
-
- #line default
- #line hidden
-
-
- #line 22 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtDelimiterForSavedCSVFile;
-
- #line default
- #line hidden
-
-
- #line 24 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtGMCharactersName;
-
- #line default
- #line hidden
-
-
- #line 27 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtId;
-
- #line default
- #line hidden
-
-
- #line 29 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtPoint;
-
- #line default
- #line hidden
-
-
- #line 31 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnSaveDefaultSettings;
-
- #line default
- #line hidden
-
-
- #line 41 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtMessagePanel;
-
- #line default
- #line hidden
-
-
- #line 42 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnLoadCSVFile;
-
- #line default
- #line hidden
-
-
- #line 43 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtCSVFileNameToLoad;
-
- #line default
- #line hidden
-
-
- #line 44 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtDelimiterForLoadedCSVFile;
-
- #line default
- #line hidden
-
-
- #line 48 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnHelpMe;
-
- #line default
- #line hidden
-
-
- #line 49 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.RichTextBox rtbHelpInformation;
-
- #line default
- #line hidden
-
-
- #line 103 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnWTF;
-
- #line default
- #line hidden
-
- private bool _contentLoaded;
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public void InitializeComponent() {
- if (_contentLoaded) {
- return;
- }
- _contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/WoWCoordsToSQLScript;component/mainwindow.xaml", System.UriKind.Relative);
-
- #line 1 "..\..\MainWindow.xaml"
- System.Windows.Application.LoadComponent(this, resourceLocater);
-
- #line default
- #line hidden
- }
-
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
- void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
- switch (connectionId)
- {
- case 1:
- this.btnGrabData = ((System.Windows.Controls.Button)(target));
-
- #line 5 "..\..\MainWindow.xaml"
- this.btnGrabData.Click += new System.Windows.RoutedEventHandler(this.btnGrabData_Click);
-
- #line default
- #line hidden
- return;
- case 2:
- this.btnConvertToSql = ((System.Windows.Controls.Button)(target));
-
- #line 16 "..\..\MainWindow.xaml"
- this.btnConvertToSql.Click += new System.Windows.RoutedEventHandler(this.btnConvertToSql_Click);
-
- #line default
- #line hidden
- return;
- case 3:
- this.lbContinentCoordinates = ((System.Windows.Controls.ListBox)(target));
- return;
- case 4:
- this.btnSaveToFile = ((System.Windows.Controls.Button)(target));
-
- #line 19 "..\..\MainWindow.xaml"
- this.btnSaveToFile.Click += new System.Windows.RoutedEventHandler(this.btnSaveToFile_Click);
-
- #line default
- #line hidden
- return;
- case 5:
- this.txtCsvFileName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 6:
- this.txtSQLScriptFileName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 7:
- this.txtDelimiterForSavedCSVFile = ((System.Windows.Controls.TextBox)(target));
- return;
- case 8:
- this.txtGMCharactersName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 9:
- this.txtId = ((System.Windows.Controls.TextBox)(target));
- return;
- case 10:
- this.txtPoint = ((System.Windows.Controls.TextBox)(target));
-
- #line 29 "..\..\MainWindow.xaml"
- this.txtPoint.LostFocus += new System.Windows.RoutedEventHandler(this.txtPoint_LostFocus);
-
- #line default
- #line hidden
- return;
- case 11:
- this.btnSaveDefaultSettings = ((System.Windows.Controls.Button)(target));
-
- #line 31 "..\..\MainWindow.xaml"
- this.btnSaveDefaultSettings.Click += new System.Windows.RoutedEventHandler(this.btnSaveDefaultSettings_Click);
-
- #line default
- #line hidden
- return;
- case 12:
- this.txtMessagePanel = ((System.Windows.Controls.TextBox)(target));
- return;
- case 13:
- this.btnLoadCSVFile = ((System.Windows.Controls.Button)(target));
-
- #line 42 "..\..\MainWindow.xaml"
- this.btnLoadCSVFile.Click += new System.Windows.RoutedEventHandler(this.btnLoadCSVFile_Click);
-
- #line default
- #line hidden
- return;
- case 14:
- this.txtCSVFileNameToLoad = ((System.Windows.Controls.TextBox)(target));
- return;
- case 15:
- this.txtDelimiterForLoadedCSVFile = ((System.Windows.Controls.TextBox)(target));
- return;
- case 16:
- this.btnHelpMe = ((System.Windows.Controls.Button)(target));
-
- #line 48 "..\..\MainWindow.xaml"
- this.btnHelpMe.Click += new System.Windows.RoutedEventHandler(this.btnHelpMe_Click);
-
- #line default
- #line hidden
- return;
- case 17:
- this.rtbHelpInformation = ((System.Windows.Controls.RichTextBox)(target));
- return;
- case 18:
- this.btnWTF = ((System.Windows.Controls.Button)(target));
-
- #line 103 "..\..\MainWindow.xaml"
- this.btnWTF.Click += new System.Windows.RoutedEventHandler(this.btnWTF_Click);
-
- #line default
- #line hidden
- return;
- }
- this._contentLoaded = true;
- }
- }
-}
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll
deleted file mode 100644
index c323eaf..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
deleted file mode 100644
index e69de29..0000000
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
deleted file mode 100644
index e69de29..0000000
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.Properties.Resources.resources b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.Properties.Resources.resources
deleted file mode 100644
index 6c05a97..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.Properties.Resources.resources and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csproj.FileListAbsolute.txt b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csproj.FileListAbsolute.txt
deleted file mode 100644
index a1d6e44..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\MainWindow.baml
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\MainWindow.g.cs
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\App.g.cs
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\WoWCoordsToSQLScript_MarkupCompile.cache
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\WoWCoordsToSQLScript.g.resources
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\WoWCoordsToSQLScript.Properties.Resources.resources
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\WoWCoordsToSQLScript.csproj.GenerateResource.Cache
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Debug\WoWCoordsToSQLScript.exe.config
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Debug\WoWCoordsToSQLScript.exe
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Debug\WoWCoordsToSQLScript.pdb
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\WoWCoordsToSQLScript.exe
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\WoWCoordsToSQLScript.pdb
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csproj.GenerateResource.Cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csproj.GenerateResource.Cache
deleted file mode 100644
index 54c25f5..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csproj.GenerateResource.Cache and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache
deleted file mode 100644
index 5675e35..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.exe b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.exe
deleted file mode 100644
index b70213f..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.exe and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.g.resources b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.g.resources
deleted file mode 100644
index f94993a..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.g.resources and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.pdb b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.pdb
deleted file mode 100644
index b2e16fe..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript.pdb and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_Content.g.i.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_Content.g.i.cs
deleted file mode 100644
index 58f6570..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_Content.g.i.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18444
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("map.ico")]
-
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_MarkupCompile.cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_MarkupCompile.cache
deleted file mode 100644
index 15d162f..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_MarkupCompile.cache
+++ /dev/null
@@ -1,20 +0,0 @@
-WoWCoordsToSQLScript
-
-
-winexe
-C#
-.cs
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\
-WoWCoordsToSQLScript
-none
-false
-DEBUG;TRACE
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\App.xaml
-11151548125
-
-71287824366
-12-1401562060
-MainWindow.xaml;
-
-False
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_MarkupCompile.i.cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_MarkupCompile.i.cache
deleted file mode 100644
index 1c18706..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Debug/WoWCoordsToSQLScript_MarkupCompile.i.cache
+++ /dev/null
@@ -1,20 +0,0 @@
-WoWCoordsToSQLScript
-
-
-winexe
-C#
-.cs
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Debug\
-WoWCoordsToSQLScript
-none
-false
-DEBUG;TRACE
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\App.xaml
-11151548125
-
-111840200253
-12-1401562060
-MainWindow.xaml;
-
-False
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/App.g.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/App.g.cs
deleted file mode 100644
index fb4c7d9..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/App.g.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-#pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1DEF14B0303CFA2735580CBCE64F98E7"
-//------------------------------------------------------------------------------
-//
-// 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.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace WoWCoordsToSQLScript {
-
-
- ///
- /// App
- ///
- public partial class App : System.Windows.Application {
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public void InitializeComponent() {
-
- #line 4 "..\..\App.xaml"
- this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
-
- #line default
- #line hidden
- }
-
- ///
- /// Application Entry Point.
- ///
- [System.STAThreadAttribute()]
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public static void Main() {
- WoWCoordsToSQLScript.App app = new WoWCoordsToSQLScript.App();
- app.InitializeComponent();
- app.Run();
- }
- }
-}
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/App.g.i.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/App.g.i.cs
deleted file mode 100644
index fb4c7d9..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/App.g.i.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-#pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1DEF14B0303CFA2735580CBCE64F98E7"
-//------------------------------------------------------------------------------
-//
-// 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.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace WoWCoordsToSQLScript {
-
-
- ///
- /// App
- ///
- public partial class App : System.Windows.Application {
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public void InitializeComponent() {
-
- #line 4 "..\..\App.xaml"
- this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
-
- #line default
- #line hidden
- }
-
- ///
- /// Application Entry Point.
- ///
- [System.STAThreadAttribute()]
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public static void Main() {
- WoWCoordsToSQLScript.App app = new WoWCoordsToSQLScript.App();
- app.InitializeComponent();
- app.Run();
- }
- }
-}
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
deleted file mode 100644
index 65fe84f..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.baml b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.baml
deleted file mode 100644
index 1dadd58..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.baml and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.g.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.g.cs
deleted file mode 100644
index 8fc8011..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.g.cs
+++ /dev/null
@@ -1,323 +0,0 @@
-#pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "4AF315607037323143B448BDEA8DE6EB"
-//------------------------------------------------------------------------------
-//
-// 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.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace WoWCoordsToSQLScript {
-
-
- ///
- /// MainWindow
- ///
- public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
-
-
- #line 5 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnGrabData;
-
- #line default
- #line hidden
-
-
- #line 16 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnConvertToSql;
-
- #line default
- #line hidden
-
-
- #line 17 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.ListBox lbContinentCoordinates;
-
- #line default
- #line hidden
-
-
- #line 19 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnSaveToFile;
-
- #line default
- #line hidden
-
-
- #line 20 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtCsvFileName;
-
- #line default
- #line hidden
-
-
- #line 21 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtSQLScriptFileName;
-
- #line default
- #line hidden
-
-
- #line 22 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtDelimiterForSavedCSVFile;
-
- #line default
- #line hidden
-
-
- #line 24 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtGMCharactersName;
-
- #line default
- #line hidden
-
-
- #line 27 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtId;
-
- #line default
- #line hidden
-
-
- #line 29 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtPoint;
-
- #line default
- #line hidden
-
-
- #line 31 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnSaveDefaultSettings;
-
- #line default
- #line hidden
-
-
- #line 41 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtMessagePanel;
-
- #line default
- #line hidden
-
-
- #line 42 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnLoadCSVFile;
-
- #line default
- #line hidden
-
-
- #line 43 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtCSVFileNameToLoad;
-
- #line default
- #line hidden
-
-
- #line 44 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtDelimiterForLoadedCSVFile;
-
- #line default
- #line hidden
-
-
- #line 48 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnHelpMe;
-
- #line default
- #line hidden
-
-
- #line 49 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.RichTextBox rtbHelpInformation;
-
- #line default
- #line hidden
-
-
- #line 103 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnWTF;
-
- #line default
- #line hidden
-
- private bool _contentLoaded;
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public void InitializeComponent() {
- if (_contentLoaded) {
- return;
- }
- _contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/WoWCoordsToSQLScript;component/mainwindow.xaml", System.UriKind.Relative);
-
- #line 1 "..\..\MainWindow.xaml"
- System.Windows.Application.LoadComponent(this, resourceLocater);
-
- #line default
- #line hidden
- }
-
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
- void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
- switch (connectionId)
- {
- case 1:
- this.btnGrabData = ((System.Windows.Controls.Button)(target));
-
- #line 5 "..\..\MainWindow.xaml"
- this.btnGrabData.Click += new System.Windows.RoutedEventHandler(this.btnGrabData_Click);
-
- #line default
- #line hidden
- return;
- case 2:
- this.btnConvertToSql = ((System.Windows.Controls.Button)(target));
-
- #line 16 "..\..\MainWindow.xaml"
- this.btnConvertToSql.Click += new System.Windows.RoutedEventHandler(this.btnConvertToSql_Click);
-
- #line default
- #line hidden
- return;
- case 3:
- this.lbContinentCoordinates = ((System.Windows.Controls.ListBox)(target));
- return;
- case 4:
- this.btnSaveToFile = ((System.Windows.Controls.Button)(target));
-
- #line 19 "..\..\MainWindow.xaml"
- this.btnSaveToFile.Click += new System.Windows.RoutedEventHandler(this.btnSaveToFile_Click);
-
- #line default
- #line hidden
- return;
- case 5:
- this.txtCsvFileName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 6:
- this.txtSQLScriptFileName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 7:
- this.txtDelimiterForSavedCSVFile = ((System.Windows.Controls.TextBox)(target));
- return;
- case 8:
- this.txtGMCharactersName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 9:
- this.txtId = ((System.Windows.Controls.TextBox)(target));
- return;
- case 10:
- this.txtPoint = ((System.Windows.Controls.TextBox)(target));
-
- #line 29 "..\..\MainWindow.xaml"
- this.txtPoint.LostFocus += new System.Windows.RoutedEventHandler(this.txtPoint_LostFocus);
-
- #line default
- #line hidden
- return;
- case 11:
- this.btnSaveDefaultSettings = ((System.Windows.Controls.Button)(target));
-
- #line 31 "..\..\MainWindow.xaml"
- this.btnSaveDefaultSettings.Click += new System.Windows.RoutedEventHandler(this.btnSaveDefaultSettings_Click);
-
- #line default
- #line hidden
- return;
- case 12:
- this.txtMessagePanel = ((System.Windows.Controls.TextBox)(target));
- return;
- case 13:
- this.btnLoadCSVFile = ((System.Windows.Controls.Button)(target));
-
- #line 42 "..\..\MainWindow.xaml"
- this.btnLoadCSVFile.Click += new System.Windows.RoutedEventHandler(this.btnLoadCSVFile_Click);
-
- #line default
- #line hidden
- return;
- case 14:
- this.txtCSVFileNameToLoad = ((System.Windows.Controls.TextBox)(target));
- return;
- case 15:
- this.txtDelimiterForLoadedCSVFile = ((System.Windows.Controls.TextBox)(target));
- return;
- case 16:
- this.btnHelpMe = ((System.Windows.Controls.Button)(target));
-
- #line 48 "..\..\MainWindow.xaml"
- this.btnHelpMe.Click += new System.Windows.RoutedEventHandler(this.btnHelpMe_Click);
-
- #line default
- #line hidden
- return;
- case 17:
- this.rtbHelpInformation = ((System.Windows.Controls.RichTextBox)(target));
- return;
- case 18:
- this.btnWTF = ((System.Windows.Controls.Button)(target));
-
- #line 103 "..\..\MainWindow.xaml"
- this.btnWTF.Click += new System.Windows.RoutedEventHandler(this.btnWTF_Click);
-
- #line default
- #line hidden
- return;
- }
- this._contentLoaded = true;
- }
- }
-}
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.g.i.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.g.i.cs
deleted file mode 100644
index 8fc8011..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/MainWindow.g.i.cs
+++ /dev/null
@@ -1,323 +0,0 @@
-#pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "4AF315607037323143B448BDEA8DE6EB"
-//------------------------------------------------------------------------------
-//
-// 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.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace WoWCoordsToSQLScript {
-
-
- ///
- /// MainWindow
- ///
- public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
-
-
- #line 5 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnGrabData;
-
- #line default
- #line hidden
-
-
- #line 16 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnConvertToSql;
-
- #line default
- #line hidden
-
-
- #line 17 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.ListBox lbContinentCoordinates;
-
- #line default
- #line hidden
-
-
- #line 19 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnSaveToFile;
-
- #line default
- #line hidden
-
-
- #line 20 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtCsvFileName;
-
- #line default
- #line hidden
-
-
- #line 21 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtSQLScriptFileName;
-
- #line default
- #line hidden
-
-
- #line 22 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtDelimiterForSavedCSVFile;
-
- #line default
- #line hidden
-
-
- #line 24 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtGMCharactersName;
-
- #line default
- #line hidden
-
-
- #line 27 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtId;
-
- #line default
- #line hidden
-
-
- #line 29 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtPoint;
-
- #line default
- #line hidden
-
-
- #line 31 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnSaveDefaultSettings;
-
- #line default
- #line hidden
-
-
- #line 41 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtMessagePanel;
-
- #line default
- #line hidden
-
-
- #line 42 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnLoadCSVFile;
-
- #line default
- #line hidden
-
-
- #line 43 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtCSVFileNameToLoad;
-
- #line default
- #line hidden
-
-
- #line 44 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox txtDelimiterForLoadedCSVFile;
-
- #line default
- #line hidden
-
-
- #line 48 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnHelpMe;
-
- #line default
- #line hidden
-
-
- #line 49 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.RichTextBox rtbHelpInformation;
-
- #line default
- #line hidden
-
-
- #line 103 "..\..\MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button btnWTF;
-
- #line default
- #line hidden
-
- private bool _contentLoaded;
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- public void InitializeComponent() {
- if (_contentLoaded) {
- return;
- }
- _contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/WoWCoordsToSQLScript;component/mainwindow.xaml", System.UriKind.Relative);
-
- #line 1 "..\..\MainWindow.xaml"
- System.Windows.Application.LoadComponent(this, resourceLocater);
-
- #line default
- #line hidden
- }
-
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
- void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
- switch (connectionId)
- {
- case 1:
- this.btnGrabData = ((System.Windows.Controls.Button)(target));
-
- #line 5 "..\..\MainWindow.xaml"
- this.btnGrabData.Click += new System.Windows.RoutedEventHandler(this.btnGrabData_Click);
-
- #line default
- #line hidden
- return;
- case 2:
- this.btnConvertToSql = ((System.Windows.Controls.Button)(target));
-
- #line 16 "..\..\MainWindow.xaml"
- this.btnConvertToSql.Click += new System.Windows.RoutedEventHandler(this.btnConvertToSql_Click);
-
- #line default
- #line hidden
- return;
- case 3:
- this.lbContinentCoordinates = ((System.Windows.Controls.ListBox)(target));
- return;
- case 4:
- this.btnSaveToFile = ((System.Windows.Controls.Button)(target));
-
- #line 19 "..\..\MainWindow.xaml"
- this.btnSaveToFile.Click += new System.Windows.RoutedEventHandler(this.btnSaveToFile_Click);
-
- #line default
- #line hidden
- return;
- case 5:
- this.txtCsvFileName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 6:
- this.txtSQLScriptFileName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 7:
- this.txtDelimiterForSavedCSVFile = ((System.Windows.Controls.TextBox)(target));
- return;
- case 8:
- this.txtGMCharactersName = ((System.Windows.Controls.TextBox)(target));
- return;
- case 9:
- this.txtId = ((System.Windows.Controls.TextBox)(target));
- return;
- case 10:
- this.txtPoint = ((System.Windows.Controls.TextBox)(target));
-
- #line 29 "..\..\MainWindow.xaml"
- this.txtPoint.LostFocus += new System.Windows.RoutedEventHandler(this.txtPoint_LostFocus);
-
- #line default
- #line hidden
- return;
- case 11:
- this.btnSaveDefaultSettings = ((System.Windows.Controls.Button)(target));
-
- #line 31 "..\..\MainWindow.xaml"
- this.btnSaveDefaultSettings.Click += new System.Windows.RoutedEventHandler(this.btnSaveDefaultSettings_Click);
-
- #line default
- #line hidden
- return;
- case 12:
- this.txtMessagePanel = ((System.Windows.Controls.TextBox)(target));
- return;
- case 13:
- this.btnLoadCSVFile = ((System.Windows.Controls.Button)(target));
-
- #line 42 "..\..\MainWindow.xaml"
- this.btnLoadCSVFile.Click += new System.Windows.RoutedEventHandler(this.btnLoadCSVFile_Click);
-
- #line default
- #line hidden
- return;
- case 14:
- this.txtCSVFileNameToLoad = ((System.Windows.Controls.TextBox)(target));
- return;
- case 15:
- this.txtDelimiterForLoadedCSVFile = ((System.Windows.Controls.TextBox)(target));
- return;
- case 16:
- this.btnHelpMe = ((System.Windows.Controls.Button)(target));
-
- #line 48 "..\..\MainWindow.xaml"
- this.btnHelpMe.Click += new System.Windows.RoutedEventHandler(this.btnHelpMe_Click);
-
- #line default
- #line hidden
- return;
- case 17:
- this.rtbHelpInformation = ((System.Windows.Controls.RichTextBox)(target));
- return;
- case 18:
- this.btnWTF = ((System.Windows.Controls.Button)(target));
-
- #line 103 "..\..\MainWindow.xaml"
- this.btnWTF.Click += new System.Windows.RoutedEventHandler(this.btnWTF_Click);
-
- #line default
- #line hidden
- return;
- }
- this._contentLoaded = true;
- }
- }
-}
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TempPE/Properties.Resources.Designer.cs.dll b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TempPE/Properties.Resources.Designer.cs.dll
deleted file mode 100644
index 257c697..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TempPE/Properties.Resources.Designer.cs.dll and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
deleted file mode 100644
index e69de29..0000000
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
deleted file mode 100644
index e69de29..0000000
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
deleted file mode 100644
index e69de29..0000000
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.Properties.Resources.resources b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.Properties.Resources.resources
deleted file mode 100644
index 6c05a97..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.Properties.Resources.resources and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csproj.FileListAbsolute.txt b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csproj.FileListAbsolute.txt
deleted file mode 100644
index 47fb947..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Release\WoWCoordsToSQLScript.exe.config
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Release\WoWCoordsToSQLScript.exe
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Release\WoWCoordsToSQLScript.pdb
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\MainWindow.baml
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\MainWindow.g.cs
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\App.g.cs
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript_MarkupCompile.cache
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.g.resources
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.Properties.Resources.resources
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.csproj.GenerateResource.Cache
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.exe
-C:\Current Projects\WoWCoordinatesPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.pdb
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Release\WoWCoordsToSQLScript.exe.config
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.exe
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.pdb
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Release\WoWCoordsToSQLScript.exe
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\bin\Release\WoWCoordsToSQLScript.pdb
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\MainWindow.baml
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\MainWindow.g.cs
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\App.g.cs
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript_MarkupCompile.cache
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.g.resources
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.Properties.Resources.resources
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\WoWCoordsToSQLScript.csproj.GenerateResource.Cache
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csproj.GenerateResource.Cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csproj.GenerateResource.Cache
deleted file mode 100644
index 2c4255e..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csproj.GenerateResource.Cache and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache
deleted file mode 100644
index 17f9039..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.csprojResolveAssemblyReference.cache and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.exe b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.exe
deleted file mode 100644
index 810ee55..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.exe and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.g.resources b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.g.resources
deleted file mode 100644
index d62ff51..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.g.resources and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.pdb b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.pdb
deleted file mode 100644
index 74eb7c1..0000000
Binary files a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript.pdb and /dev/null differ
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript_MarkupCompile.cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript_MarkupCompile.cache
deleted file mode 100644
index 412502e..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript_MarkupCompile.cache
+++ /dev/null
@@ -1,20 +0,0 @@
-WoWCoordsToSQLScript
-
-
-winexe
-C#
-.cs
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\
-WoWCoordsToSQLScript
-none
-false
-TRACE
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\App.xaml
-11151548125
-
-71287824366
-12-1401562060
-MainWindow.xaml;
-
-False
-
diff --git a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript_MarkupCompile.i.cache b/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript_MarkupCompile.i.cache
deleted file mode 100644
index fa0556b..0000000
--- a/WoWCoordsToSQLScript/WoWCoordsToSQLScript/obj/Release/WoWCoordsToSQLScript_MarkupCompile.i.cache
+++ /dev/null
@@ -1,20 +0,0 @@
-WoWCoordsToSQLScript
-
-
-winexe
-C#
-.cs
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\obj\Release\
-WoWCoordsToSQLScript
-none
-false
-TRACE
-D:\DEVELOPMENT\UKC\WoWNPCPathPlotter\WoWCoordsToSQLScript\WoWCoordsToSQLScript\App.xaml
-11151548125
-
-11-1564284528
-12-1401562060
-MainWindow.xaml;
-
-False
-