Default namespace changed to EveOPreview

This commit is contained in:
Anton Kasyanov
2016-05-09 19:26:58 +03:00
parent d84201f529
commit 46fc80714f
10 changed files with 25 additions and 32 deletions

View File

@@ -1,18 +1,17 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace PreviewToy
namespace EveOPreview
{
static class Program
{
/// <summary>The main entry point for the application.</summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(true);
Application.Run(new PreviewToyHandler());
}
}
static class Program
{
/// <summary>The main entry point for the application.</summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(true);
Application.Run(new PreviewToyHandler());
}
}
}