From dfcc229c951b1bd2305ca858cae79be2bb6598dc Mon Sep 17 00:00:00 2001 From: atom0s Date: Wed, 2 Nov 2016 21:04:52 -0700 Subject: [PATCH] Bumped version number to 2.0.0.8. General code cleanup of usings in all source code files. --- Form1.cs | 20 +++++++++----------- Form2.cs | 12 ++++++------ Form3.cs | 12 +++--------- Form4.cs | 16 +++------------- Program.cs | 9 ++++----- ProgressBar.cs | 9 +++++---- Properties/AssemblyInfo.cs | 5 ++--- 7 files changed, 32 insertions(+), 51 deletions(-) diff --git a/Form1.cs b/Form1.cs index d794eae..7170373 100644 --- a/Form1.cs +++ b/Form1.cs @@ -1,19 +1,17 @@ -using CurePlease.Properties; -using System; -using System.Diagnostics; -using System.Drawing; -using System.IO; -using System.Linq; -using System.Threading; -using System.Windows.Forms; -using System.Xml; -using System.Text; - + // ReSharper disable InconsistentNaming namespace CurePlease { + using CurePlease.Properties; using EliteMMO.API; + using System; + using System.Diagnostics; + using System.Drawing; + using System.IO; + using System.Linq; + using System.Threading; + using System.Windows.Forms; public partial class Form1 : Form { diff --git a/Form2.cs b/Form2.cs index 90c4a41..cdd8926 100644 --- a/Form2.cs +++ b/Form2.cs @@ -1,11 +1,11 @@ -using System; -using System.Globalization; -using System.Windows.Forms; -using System.Threading; - + namespace CurePlease { - #region "== Form2" + using System; + using System.Globalization; + using System.Windows.Forms; + + #region "== Form2" public partial class Form2 : Form { diff --git a/Form3.cs b/Form3.cs index f545b64..90425d7 100644 --- a/Form3.cs +++ b/Form3.cs @@ -1,14 +1,8 @@ -//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 CurePlease { + using System.Windows.Forms; + public partial class Form3 : Form { public Form3() diff --git a/Form4.cs b/Form4.cs index 62d9758..f348ce6 100644 --- a/Form4.cs +++ b/Form4.cs @@ -1,19 +1,9 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading; -using System.Threading.Tasks; -using System.Windows.Forms; -using System.Text.RegularExpressions; - + namespace CurePlease { - using EliteMMO.API; + using System; + using System.Windows.Forms; using static Form1; diff --git a/Program.cs b/Program.cs index 4eab6fb..82b9811 100644 --- a/Program.cs +++ b/Program.cs @@ -1,10 +1,9 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Windows.Forms; - + namespace CurePlease { + using System; + using System.Windows.Forms; + static class Program { /// diff --git a/ProgressBar.cs b/ProgressBar.cs index 1a6504e..a25183e 100644 --- a/ProgressBar.cs +++ b/ProgressBar.cs @@ -1,9 +1,10 @@ -using System.Drawing; -using System.Drawing.Drawing2D; -using System.Windows.Forms; - + namespace CurePlease { + using System.Drawing; + using System.Drawing.Drawing2D; + using System.Windows.Forms; + public class NewProgressBar : ProgressBar { public NewProgressBar () diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index d9e5ce7..05d0b2e 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following @@ -32,5 +31,5 @@ // 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("2.0.0.7")] -[assembly: AssemblyFileVersion("2.0.0.7")] +[assembly: AssemblyVersion("2.0.0.8")] +[assembly: AssemblyFileVersion("2.0.0.8")]