Skip to content
This repository has been archived by the owner on Jun 30, 2020. It is now read-only.

Commit

Permalink
Bumped version number to 2.0.0.8.
Browse files Browse the repository at this point in the history
General code cleanup of usings in all source code files.
  • Loading branch information
atom0s committed Nov 3, 2016
1 parent 4727ba4 commit dfcc229
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 51 deletions.
20 changes: 9 additions & 11 deletions Form1.cs
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down
12 changes: 6 additions & 6 deletions Form2.cs
Original file line number Diff line number Diff line change
@@ -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
{

Expand Down
12 changes: 3 additions & 9 deletions Form3.cs
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
16 changes: 3 additions & 13 deletions Form4.cs
Original file line number Diff line number Diff line change
@@ -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;


Expand Down
9 changes: 4 additions & 5 deletions Program.cs
Original file line number Diff line number Diff line change
@@ -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
{
/// <summary>
Expand Down
9 changes: 5 additions & 4 deletions ProgressBar.cs
Original file line number Diff line number Diff line change
@@ -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 ()
Expand Down
5 changes: 2 additions & 3 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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")]

0 comments on commit dfcc229

Please sign in to comment.