Skip to content

Commit 993df13

Browse files
committed
Changed the solution structure and renamed namespaces.
1 parent fec3709 commit 993df13

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+129
-129
lines changed

SmartSystemMenu/Code/Common/AutoStarter.cs renamed to SmartSystemMenu/AutoStarter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Diagnostics;
66
using Microsoft.Win32;
77

8-
namespace SmartSystemMenu.Code.Common
8+
namespace SmartSystemMenu
99
{
1010
static class AutoStarter
1111
{

SmartSystemMenu/Code/Common/EnumWindows.cs renamed to SmartSystemMenu/EnumWindows.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Runtime.InteropServices;
77
using System.Diagnostics;
88

9-
namespace SmartSystemMenu.Code.Common
9+
namespace SmartSystemMenu
1010
{
1111
static class EnumWindows
1212
{
@@ -45,7 +45,7 @@ private static Boolean EnumWindowCallback(IntPtr hwnd, Int32 lParam)
4545
NativeMethods.GetWindowThreadProcessId(hwnd, out pid);
4646

4747
#if WIN32
48-
isAdd = !Environment.Is64BitOperatingSystem || PlatformUtility.IsWow64Process(pid);
48+
isAdd = !Environment.Is64BitOperatingSystem || PlatformUtils.IsWow64Process(pid);
4949
#else
5050
isAdd = Environment.Is64BitOperatingSystem && !PlatformUtility.IsWow64Process(pid);
5151
#endif

SmartSystemMenu/Code/Common/Extensions/PriorityExtensions.cs renamed to SmartSystemMenu/Extensions/PriorityExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Text;
55

6-
namespace SmartSystemMenu.Code.Common.Extensions
6+
namespace SmartSystemMenu.Extensions
77
{
88
static class PriorityExtensions
99
{

SmartSystemMenu/Code/Common/Extensions/ProcessExtensions.cs renamed to SmartSystemMenu/Extensions/ProcessExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Diagnostics;
66

7-
namespace SmartSystemMenu.Code.Common.Extensions
7+
namespace SmartSystemMenu.Extensions
88
{
99
static class ProcessExtensions
1010
{

SmartSystemMenu/Code/Forms/AboutForm.Designer.cs renamed to SmartSystemMenu/Forms/AboutForm.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System;
22
using System.Windows.Forms;
3-
using SmartSystemMenu.Code.Common;
3+
using SmartSystemMenu;
44

5-
namespace SmartSystemMenu.Code.Forms
5+
namespace SmartSystemMenu.Forms
66
{
77
partial class AboutForm : Form
88
{
@@ -11,9 +11,9 @@ partial class AboutForm : Form
1111
public AboutForm()
1212
{
1313
InitializeComponent();
14-
Text = "About " + AssemblyUtility.AssemblyProductName;
15-
lblProductName.Text = String.Format("{0} v{1}", AssemblyUtility.AssemblyProductName, AssemblyUtility.AssemblyVersion);
16-
lblCopyright.Text = String.Format("{0}-{1} {2}", AssemblyUtility.AssemblyCopyright, DateTime.Now.Year, AssemblyUtility.AssemblyCompany);
14+
Text = "About " + AssemblyUtils.AssemblyProductName;
15+
lblProductName.Text = String.Format("{0} v{1}", AssemblyUtils.AssemblyProductName, AssemblyUtils.AssemblyVersion);
16+
lblCopyright.Text = String.Format("{0}-{1} {2}", AssemblyUtils.AssemblyCopyright, DateTime.Now.Year, AssemblyUtils.AssemblyCompany);
1717
linkUrl.Text = URL;
1818
}
1919

SmartSystemMenu/Code/Forms/InfoForm.Designer.cs renamed to SmartSystemMenu/Forms/InfoForm.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
using System.Windows.Forms;
99
using System.Diagnostics;
1010
using System.IO;
11-
using SmartSystemMenu.Code.Common;
11+
using SmartSystemMenu;
1212

13-
namespace SmartSystemMenu.Code.Forms
13+
namespace SmartSystemMenu.Forms
1414
{
1515
partial class InfoForm : Form
1616
{

0 commit comments

Comments
 (0)